summaryrefslogtreecommitdiffstats
path: root/widget/src/scrollable.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector@hecrj.dev>2024-04-25 23:19:39 +0200
committerLibravatar GitHub <noreply@github.com>2024-04-25 23:19:39 +0200
commit2d01d55cbc62601c640f2e55d8a8ddb5d63de1af (patch)
tree6a2a9339b2bc536fc71d3def15446b667110ca19 /widget/src/scrollable.rs
parent5ef593ce53e0ba53d51809f198a02743f87a6ccd (diff)
parent4fc342c97963a7a7e7983604b9399fccf017aa53 (diff)
downloadiced-2d01d55cbc62601c640f2e55d8a8ddb5d63de1af.tar.gz
iced-2d01d55cbc62601c640f2e55d8a8ddb5d63de1af.tar.bz2
iced-2d01d55cbc62601c640f2e55d8a8ddb5d63de1af.zip
Merge pull request #2405 from iced-rs/feature/stack-widget
`Stack` widget
Diffstat (limited to 'widget/src/scrollable.rs')
-rw-r--r--widget/src/scrollable.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/widget/src/scrollable.rs b/widget/src/scrollable.rs
index cdc143a2..10e81cee 100644
--- a/widget/src/scrollable.rs
+++ b/widget/src/scrollable.rs
@@ -857,7 +857,7 @@ where
if (mouse_over_x_scrollbar || mouse_over_y_scrollbar)
|| state.scrollers_grabbed()
{
- mouse::Interaction::Idle
+ mouse::Interaction::None
} else {
let translation =
state.translation(self.direction, bounds, content_bounds);