From 0723735549c44514c3fff3bf5b124f5d5c34e793 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Fri, 18 Oct 2024 16:19:36 -0400 Subject: [PATCH] fix: scrollable direction --- widget/src/scrollable.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widget/src/scrollable.rs b/widget/src/scrollable.rs index cfa5985c98..120af2c601 100644 --- a/widget/src/scrollable.rs +++ b/widget/src/scrollable.rs @@ -818,7 +818,7 @@ where // TODO: Configurable speed/friction (?) Vector::new(x, y) * 60. } - mouse::ScrollDelta::Pixels { x, y } => -Vector::new(x, y), + mouse::ScrollDelta::Pixels { x, y } => Vector::new(x, y), }; let is_shift_pressed = state.keyboard_modifiers.shift();