mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 20:59:16 +00:00
LibWeb: Use correct event name for the onmousemove global event handler
The current event name was accidentally set for the onmousedown event.
This commit is contained in:
parent
1206e9803f
commit
81d7d68416
Notes:
sideshowbarker
2024-07-18 19:21:14 +09:00
Author: https://github.com/IdanHo
Commit: 81d7d68416
Pull-request: https://github.com/SerenityOS/serenity/pull/6517
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@
|
|||
E(onmousedown, UIEvents::EventNames::mousedown) \
|
||||
E(onmouseenter, UIEvents::EventNames::mouseenter) \
|
||||
E(onmouseleave, UIEvents::EventNames::mouseleave) \
|
||||
E(onmousemove, UIEvents::EventNames::mousedown) \
|
||||
E(onmousemove, UIEvents::EventNames::mousemove) \
|
||||
E(onmouseout, UIEvents::EventNames::mouseout) \
|
||||
E(onmouseover, UIEvents::EventNames::mouseover) \
|
||||
E(onmouseup, UIEvents::EventNames::mouseup) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue