mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
LibWeb: Skip page scrolling for wheel events consumed by scrollable box
Leftover from 90879a07ba
This commit is contained in:
parent
a386ebde02
commit
0afbd827e0
Notes:
sideshowbarker
2024-07-17 02:29:45 +09:00
Author: https://github.com/kalenikaliaksandr
Commit: 0afbd827e0
Pull-request: https://github.com/SerenityOS/serenity/pull/23614
3 changed files with 37 additions and 1 deletions
|
@ -180,7 +180,8 @@ bool EventHandler::handle_mousewheel(CSSPixelPoint position, CSSPixelPoint scree
|
|||
containing_block = containing_block->containing_block();
|
||||
}
|
||||
|
||||
paintable->handle_mousewheel({}, position, buttons, modifiers, wheel_delta_x, wheel_delta_y);
|
||||
if (paintable->handle_mousewheel({}, position, buttons, modifiers, wheel_delta_x, wheel_delta_y))
|
||||
return true;
|
||||
|
||||
auto node = dom_node_for_event_dispatch(*paintable);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue