From: lvgx Date: Tue, 29 Sep 2020 14:22:49 +0000 (+0200) Subject: Style fix X-Git-Tag: v3.5~47^2 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=6067a91ae6393d19367d51c902e9d1a9cfac57b0;p=nnn.git Style fix --- diff --git a/src/nnn.c b/src/nnn.c index de671f31..3a03bdbf 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);