aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar lvgx <l@vgx.fr>2020-09-29 16:35:59 +0200
committerGravatar GitHub <noreply@github.com>2020-09-29 20:05:59 +0530
commit78e576ae24e224d55e9e63d8fa45689f5fe9f043 (patch)
treef0af7427fc9b3b265416d9011acd313bdc842f1a /src
parentb5232de642576c7686425171f6baf8a02b592ff7 (diff)
downloadnnn-78e576ae24e224d55e9e63d8fa45689f5fe9f043.tar.gz
Fix rollover bug (#747)
* Fix rollover bug Fixes #743 * Snap to edges in no rollover multiline scroll mode * Style fix
Diffstat (limited to 'src')
-rw-r--r--src/nnn.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 5110a14..3a03bdb 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -5973,14 +5973,20 @@ nochange:
#if NCURSES_MOUSE_VERSION > 1
/* Scroll up */
if (event.bstate == BUTTON4_PRESSED && ndents && (cfg.rollover || cur)) {
- move_cursor((cur + ndents - scroll_lines) % ndents, 0);
+ if (!cfg.rollover && cur < scroll_lines)
+ move_cursor(0,0);
+ else
+ move_cursor((cur + ndents - scroll_lines) % ndents, 0);
break;
}
/* Scroll down */
if (event.bstate == BUTTON5_PRESSED && ndents
&& (cfg.rollover || (cur != ndents - 1))) {
- move_cursor((cur + scroll_lines) % ndents, 0);
+ if (!cfg.rollover && cur >= ndents - scroll_lines)
+ move_cursor(ndents-1, 0);
+ else
+ move_cursor((cur + scroll_lines) % ndents, 0);
break;
}
#endif