From cafd9e9a1a5ad03cec4f377fb5dd38a6ded3b4a3 Mon Sep 17 00:00:00 2001 From: nirav Date: Mon, 29 Oct 2018 21:12:34 +0530 Subject: Disabled next/prev with scrolling --- src/input.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/input.c b/src/input.c index 6fb896a..f33cd20 100644 --- a/src/input.c +++ b/src/input.c @@ -156,15 +156,11 @@ void handle_scroll(GdkEvent *event) case GDK_SCROLL_UP: if (state & GDK_CONTROL_MASK) { zoom(1); - } else { - prev_file(); } break; case GDK_SCROLL_DOWN: if (state & GDK_CONTROL_MASK) { zoom(-1); - } else { - next_file(); } break; default: -- cgit v1.2.3