aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nnn.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 3d8db0e..54ff48f 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -4303,13 +4303,14 @@ nochange:
#if NCURSES_MOUSE_VERSION > 1
/* Scroll up */
- if (event.bstate == BUTTON4_PRESSED && ndents) {
+ if (event.bstate == BUTTON4_PRESSED && ndents && (cfg.rollover || cur)) {
move_cursor((cur + ndents - 1) % ndents, 0);
break;
}
/* Scroll down */
- if (event.bstate == BUTTON5_PRESSED && ndents) {
+ if (event.bstate == BUTTON5_PRESSED && ndents
+ && (cfg.rollover || (cur != ndents - 1))) {
move_cursor((cur + 1) % ndents, 0);
break;
}