mirror of
https://github.com/jarun/nnn.git
synced 2025-03-18 20:39:45 +00:00
Style fix
This commit is contained in:
parent
d1d4c4ad22
commit
6067a91ae6
1 changed files with 2 additions and 2 deletions
|
@ -5973,7 +5973,7 @@ 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)) {
|
||||||
if(!cfg.rollover && cur < scroll_lines)
|
if (!cfg.rollover && cur < scroll_lines)
|
||||||
move_cursor(0,0);
|
move_cursor(0,0);
|
||||||
else
|
else
|
||||||
move_cursor((cur + ndents - scroll_lines) % ndents, 0);
|
move_cursor((cur + ndents - scroll_lines) % ndents, 0);
|
||||||
|
@ -5983,7 +5983,7 @@ nochange:
|
||||||
/* Scroll down */
|
/* Scroll down */
|
||||||
if (event.bstate == BUTTON5_PRESSED && ndents
|
if (event.bstate == BUTTON5_PRESSED && ndents
|
||||||
&& (cfg.rollover || (cur != ndents - 1))) {
|
&& (cfg.rollover || (cur != ndents - 1))) {
|
||||||
if(!cfg.rollover && cur >= ndents - scroll_lines)
|
if (!cfg.rollover && cur >= ndents - scroll_lines)
|
||||||
move_cursor(ndents-1, 0);
|
move_cursor(ndents-1, 0);
|
||||||
else
|
else
|
||||||
move_cursor((cur + scroll_lines) % ndents, 0);
|
move_cursor((cur + scroll_lines) % ndents, 0);
|
||||||
|
|
Loading…
Add table
Reference in a new issue