chore: put cloths on a naked bool

This commit is contained in:
Justin Gross 2024-09-12 02:05:53 -04:00
parent 825ec0c3e3
commit 7acda4c007
No known key found for this signature in database
GPG key ID: C263DFAAD9E18BB2

View file

@ -3372,7 +3372,8 @@ impl Tab {
mouse_area = mouse_area.on_right_press(Message::ContextMenu);
}
let mouse_area = ScrollArea::new(mouse_area, true)
let should_propogate_events = true;
let mouse_area = ScrollArea::new(mouse_area, should_propogate_events)
.on_scroll(respond_to_scroll_direction);
let mut popover = widget::popover(mouse_area);