aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/input.c4
1 files changed, 0 insertions, 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: