mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
parent
b5232de642
commit
d9c0c08698
|
@ -5972,14 +5972,14 @@ nochange:
|
||||||
}
|
}
|
||||||
#if NCURSES_MOUSE_VERSION > 1
|
#if NCURSES_MOUSE_VERSION > 1
|
||||||
/* Scroll up */
|
/* Scroll up */
|
||||||
if (event.bstate == BUTTON4_PRESSED && ndents && (cfg.rollover || cur)) {
|
if (event.bstate == BUTTON4_PRESSED && ndents && (cfg.rollover || cur >= scroll_lines)) {
|
||||||
move_cursor((cur + ndents - scroll_lines) % ndents, 0);
|
move_cursor((cur + ndents - scroll_lines) % ndents, 0);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Scroll down */
|
/* Scroll down */
|
||||||
if (event.bstate == BUTTON5_PRESSED && ndents
|
if (event.bstate == BUTTON5_PRESSED && ndents
|
||||||
&& (cfg.rollover || (cur != ndents - 1))) {
|
&& (cfg.rollover || (cur + scroll_lines < ndents))) {
|
||||||
move_cursor((cur + scroll_lines) % ndents, 0);
|
move_cursor((cur + scroll_lines) % ndents, 0);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue