We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Scrollable
1 parent f64e95e commit 2d00747Copy full SHA for 2d00747
1 file changed
native/src/widget/scrollable.rs
@@ -516,7 +516,10 @@ pub fn update<Message>(
516
517
return event::Status::Captured;
518
}
519
- Event::Touch(event) => {
+ Event::Touch(event)
520
+ if state.scroll_area_touched_at.is_some()
521
+ || !mouse_over_y_scrollbar && !mouse_over_x_scrollbar =>
522
+ {
523
match event {
524
touch::Event::FingerPressed { .. } => {
525
state.scroll_area_touched_at = Some(cursor_position);
0 commit comments