[Window] Ignore duplicate mouse enter events.

This commit is contained in:
bruvzg 2024-06-12 22:37:28 +03:00
parent 475248d99d
commit 18393eb09a
No known key found for this signature in database
GPG Key ID: 7960FCF39844EC38

View File

@ -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.");