Merge pull request #93100 from bruvzg/dbl_enter_fx
[Window] Ignore duplicate mouse enter events.
This commit is contained in:
commit
5c05e986f9
1 changed files with 3 additions and 0 deletions
|
@ -738,6 +738,9 @@ void Window::_event_callback(DisplayServer::WindowEvent p_event) {
|
|||
return;
|
||||
}
|
||||
Window *root = get_tree()->get_root();
|
||||
if (mouse_in_window && root->gui.windowmanager_window_over == this) {
|
||||
return;
|
||||
}
|
||||
if (root->gui.windowmanager_window_over) {
|
||||
#ifdef DEV_ENABLED
|
||||
WARN_PRINT_ONCE("Entering a window while a window is hovered should never happen in DisplayServer.");
|
||||
|
|
Loading…
Reference in a new issue