]> Sergey Matveev's repositories - nnn.git/commitdiff
Style fix
authorlvgx <l@vgx.fr>
Tue, 29 Sep 2020 14:22:49 +0000 (16:22 +0200)
committerGitHub <noreply@github.com>
Tue, 29 Sep 2020 14:22:49 +0000 (16:22 +0200)
src/nnn.c

index de671f312d339d1db108604b7aa68954f91adeb8..3a03bdbf44ec866ee844a670ba20cd20a3e633b2 100644 (file)
--- 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);