From 4a47470a0738ade20ab40d5e71c6c220150804fd Mon Sep 17 00:00:00 2001 From: malc Date: Wed, 14 Jul 2010 16:04:51 +0400 Subject: [PATCH] Fix navigation corner case --- main.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.ml b/main.ml index 3810dc9..2607546 100644 --- a/main.ml +++ b/main.ml @@ -1320,7 +1320,7 @@ let special ~key ~x ~y = if active > first then let rows = active - first in - if rows > maxrows then first + incr else first + if rows > maxrows then active - maxrows else first else active in state.outline <- Some (allowdel, active, first, outlines, qsearch); -- 2.11.4.GIT