mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:38:11 +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
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