[Window] Fix mouse hover state of the main window when mouse enter event was sent before setting callbacks.

This commit is contained in:
bruvzg 2024-06-08 19:08:10 +03:00
parent 5241d30bfa
commit 768fd1eacb
No known key found for this signature in database
GPG Key ID: 7960FCF39844EC38

View File

@ -1354,6 +1354,10 @@ void Window::_notification(int p_what) {
_update_window_size(); // Inform DisplayServer of minimum and maximum size.
_update_viewport_size(); // Then feed back to the viewport.
_update_window_callbacks();
// Simulate mouse-enter event when mouse is over the window, since OS event might arrive before setting callbacks.
if (!mouse_in_window && Rect2(position, size).has_point(DisplayServer::get_singleton()->mouse_get_position())) {
_event_callback(DisplayServer::WINDOW_EVENT_MOUSE_ENTER);
}
RS::get_singleton()->viewport_set_update_mode(get_viewport_rid(), RS::VIEWPORT_UPDATE_WHEN_VISIBLE);
if (DisplayServer::get_singleton()->window_get_flag(DisplayServer::WindowFlags(FLAG_TRANSPARENT), window_id)) {
set_transparent_background(true);