mirror of
https://github.com/jarun/nnn.git
synced 2024-12-01 02:49:44 +00:00
Snap to edges in no rollover multiline scroll mode
This commit is contained in:
parent
d9c0c08698
commit
d1d4c4ad22
14
src/nnn.c
14
src/nnn.c
|
@ -5972,15 +5972,21 @@ nochange:
|
||||||
}
|
}
|
||||||
#if NCURSES_MOUSE_VERSION > 1
|
#if NCURSES_MOUSE_VERSION > 1
|
||||||
/* Scroll up */
|
/* Scroll up */
|
||||||
if (event.bstate == BUTTON4_PRESSED && ndents && (cfg.rollover || cur >= scroll_lines)) {
|
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;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Scroll down */
|
/* Scroll down */
|
||||||
if (event.bstate == BUTTON5_PRESSED && ndents
|
if (event.bstate == BUTTON5_PRESSED && ndents
|
||||||
&& (cfg.rollover || (cur + scroll_lines < 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;
|
break;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue