From 3cfc9189762f18084d7707d7d4325f735d9de95d Mon Sep 17 00:00:00 2001 From: Andrew Zaech Date: Tue, 29 Aug 2023 01:03:12 +0000 Subject: [PATCH] st/scroll-view: Fix issue in st_scroll_view_scroll_event() adjust_with_direction() uses a ClutterScrollDirection not ClutterTextDirection Fixes: 23b439dc ("st/scroll-view: Use ClutterEvent getter methods") Closes https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/6937 Part-of: --- src/st/st-scroll-view.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/st/st-scroll-view.c b/src/st/st-scroll-view.c index edaa0278d..cd31b376c 100644 --- a/src/st/st-scroll-view.c +++ b/src/st/st-scroll-view.c @@ -793,7 +793,7 @@ st_scroll_view_scroll_event (ClutterActor *self, break; case CLUTTER_SCROLL_UP: case CLUTTER_SCROLL_DOWN: - adjust_with_direction (priv->vadjustment, direction); + adjust_with_direction (priv->vadjustment, scroll_direction); break; case CLUTTER_SCROLL_LEFT: case CLUTTER_SCROLL_RIGHT: @@ -807,7 +807,7 @@ st_scroll_view_scroll_event (ClutterActor *self, } else { - adjust_with_direction (priv->hadjustment, direction); + adjust_with_direction (priv->hadjustment, scroll_direction); } break; default: