Merge pull request #92908 from bruvzg/fix_main_window_initial_mouseover

[Window] Fix mouse hover state of the main window when mouse enter event was sent before setting callbacks.
This commit is contained in:
Rémi Verschelde 2024-06-11 10:48:58 +02:00
commit d3c1eb009e
No known key found for this signature in database
GPG key ID: C3336907360768E1

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);