Range: Fix inverted vert scrolling on vert Ranges…

The change in the previous patch should only be applied when the Range
is oriented horizontally.

https://bugzilla.gnome.org/show_bug.cgi?id=737175
This commit is contained in:
Daniel Boles 2017-12-19 21:18:41 +00:00
parent 4d18a346c1
commit 0e338d31a4

View File

@ -3059,8 +3059,9 @@ _gtk_range_get_wheel_delta (GtkRange *range,
} }
else if (gdk_event_get_scroll_direction ((GdkEvent *) event, &direction)) else if (gdk_event_get_scroll_direction ((GdkEvent *) event, &direction))
{ {
if (direction == GDK_SCROLL_DOWN || if (direction == GDK_SCROLL_LEFT ||
direction == GDK_SCROLL_LEFT) (priv->orientation == GTK_ORIENTATION_VERTICAL && direction == GDK_SCROLL_UP) ||
(priv->orientation == GTK_ORIENTATION_HORIZONTAL && direction == GDK_SCROLL_DOWN))
delta = - scroll_unit; delta = - scroll_unit;
else else
delta = scroll_unit; delta = scroll_unit;