From fed067fc9e2d2b0fcb9acf9c49a6280428e2c7a1 Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Fri, 29 Mar 2019 07:07:44 +0100 Subject: app-misc/skim: remove unused patch(es) Signed-off-by: Michael Mair-Keimberger Closes: https://github.com/gentoo/gentoo/pull/11529 Signed-off-by: Georgy Yakovlev --- app-misc/skim/files/0.6.2-cursor-fix.patch | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 app-misc/skim/files/0.6.2-cursor-fix.patch diff --git a/app-misc/skim/files/0.6.2-cursor-fix.patch b/app-misc/skim/files/0.6.2-cursor-fix.patch deleted file mode 100644 index 82fcccdae536..000000000000 --- a/app-misc/skim/files/0.6.2-cursor-fix.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 9b5213da447eb8674570924026689d89f83ce9b6 Mon Sep 17 00:00:00 2001 -From: Jinzhou Zhang -Date: Tue, 19 Mar 2019 22:39:05 +0800 -Subject: [PATCH] [selection] fix cursor after items changed - ---- - src/selection.rs | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/selection.rs b/src/selection.rs -index 626f615..72d277e 100644 ---- a/src/selection.rs -+++ b/src/selection.rs -@@ -98,7 +98,7 @@ impl Selection { - - if self.items.len() <= self.line_cursor + self.item_cursor { - // if not enough items, scroll the cursor a page down -- self.item_cursor = max(height, self.item_cursor) - height; -+ self.item_cursor = max(self.items.len(), height) - height; - } - } - -- cgit v1.2.3-65-gdbad