Make the browser scroll with touchpad on Wayland

And generally clear up scroll handling.
This commit is contained in:
2022-07-11 04:09:49 +02:00
parent c6096d05b5
commit 1fee920902
2 changed files with 37 additions and 3 deletions

View File

@@ -581,7 +581,7 @@ fiv_view_scroll_event(GtkWidget *widget, GdkEventScroll *event)
case GDK_SCROLL_DOWN:
return set_scale(self, self->scale / SCALE_STEP);
default:
// For some reason, we can also get GDK_SCROLL_SMOOTH.
// For some reason, native GdkWindows may also get GDK_SCROLL_SMOOTH.
// Left/right are good to steal from GtkScrolledWindow for consistency.
return TRUE;
}