mirror of
https://github.com/godotengine/godot.git
synced 2025-04-19 01:27:45 +08:00
Merge pull request #78078 from Sauermann/fix-drop-physics-mouse-over
Ensure that `_drop_physics_mouseover` only happens when necessary
This commit is contained in:
commit
7961bc6193
@ -1875,13 +1875,13 @@ void Viewport::_gui_input_event(Ref<InputEvent> p_event) {
|
||||
}
|
||||
|
||||
if (over != gui.mouse_over) {
|
||||
if (!gui.mouse_over) {
|
||||
_drop_physics_mouseover();
|
||||
}
|
||||
_drop_mouse_over();
|
||||
_gui_cancel_tooltip();
|
||||
|
||||
if (over) {
|
||||
if (!gui.mouse_over) {
|
||||
_drop_physics_mouseover();
|
||||
}
|
||||
_gui_call_notification(over, Control::NOTIFICATION_MOUSE_ENTER);
|
||||
gui.mouse_over = over;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user