aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar lvgx <l@vgx.fr>2020-09-29 16:22:49 +0200
committerGravatar GitHub <noreply@github.com>2020-09-29 16:22:49 +0200
commit6067a91ae6393d19367d51c902e9d1a9cfac57b0 (patch)
treef0af7427fc9b3b265416d9011acd313bdc842f1a
parentd1d4c4ad22869996e23e0f3206ccc8caa958aa54 (diff)
downloadnnn-6067a91ae6393d19367d51c902e9d1a9cfac57b0.tar.gz
Style fix
-rw-r--r--src/nnn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nnn.c b/src/nnn.c
index de671f3..3a03bdb 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -5973,7 +5973,7 @@ nochange:
#if NCURSES_MOUSE_VERSION > 1
/* Scroll up */
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);
else
move_cursor((cur + ndents - scroll_lines) % ndents, 0);
@@ -5983,7 +5983,7 @@ nochange:
/* Scroll down */
if (event.bstate == BUTTON5_PRESSED && ndents
&& (cfg.rollover || (cur != ndents - 1))) {
- if(!cfg.rollover && cur >= ndents - scroll_lines)
+ if (!cfg.rollover && cur >= ndents - scroll_lines)
move_cursor(ndents-1, 0);
else
move_cursor((cur + scroll_lines) % ndents, 0);