aboutsummaryrefslogtreecommitdiff
path: root/fastiv-view.c
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2021-11-21 23:27:30 +0100
committerPřemysl Eric Janouch <p@janouch.name>2021-11-22 00:48:21 +0100
commitc4dead2eee2d7a480c5765d6e6f83837a2a44771 (patch)
tree875505f11a8ea911ff41344df94ed16aba5c65a7 /fastiv-view.c
parenta8796512d2778375a4f14592188ac9d1603d8a1c (diff)
downloadfiv-c4dead2eee2d7a480c5765d6e6f83837a2a44771.tar.gz
fiv-c4dead2eee2d7a480c5765d6e6f83837a2a44771.tar.xz
fiv-c4dead2eee2d7a480c5765d6e6f83837a2a44771.zip
Fix another mysterious GTK+ issue
Diffstat (limited to 'fastiv-view.c')
-rw-r--r--fastiv-view.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fastiv-view.c b/fastiv-view.c
index 5ecb85f..4efb8be 100644
--- a/fastiv-view.c
+++ b/fastiv-view.c
@@ -313,7 +313,9 @@ fastiv_view_scroll_event(GtkWidget *widget, GdkEventScroll *event)
case GDK_SCROLL_DOWN:
return set_scale(self, self->scale / SCALE_STEP);
default:
- return FALSE;
+ // For some reason, we can also get GDK_SCROLL_SMOOTH.
+ // Left/right are good to steal from GtkScrolledWindow for consistency.
+ return TRUE;
}
}