diff options
author | nirav <nirav@teisuu.com> | 2018-10-29 21:12:34 +0530 |
---|---|---|
committer | Dandelion <nirav@teisuu.com> | 2018-10-29 21:12:34 +0530 |
commit | cafd9e9a1a5ad03cec4f377fb5dd38a6ded3b4a3 (patch) | |
tree | ee574dc98d1f33124b2a417692c4d66ebee78ab3 | |
parent | ca25381b691a235aa0396e7e2ab5d9a8256dcbbd (diff) | |
download | im-cafd9e9a1a5ad03cec4f377fb5dd38a6ded3b4a3.tar.gz im-cafd9e9a1a5ad03cec4f377fb5dd38a6ded3b4a3.zip |
Disabled next/prev with scrolling
-rw-r--r-- | src/input.c | 4 |
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: |