Merge pull request #101819 from Riteo/wl-embarassingly-easy

Wayland: Release pressed events on application focus out
This commit is contained in:
Thaddeus Crews 2025-01-20 10:05:29 -06:00
commit e062cd254d
No known key found for this signature in database
GPG key ID: 62181B86FE9E5D84

View file

@ -1174,6 +1174,7 @@ void DisplayServerWayland::process_events() {
if (OS::get_singleton()->get_main_loop()) { if (OS::get_singleton()->get_main_loop()) {
OS::get_singleton()->get_main_loop()->notification(MainLoop::NOTIFICATION_APPLICATION_FOCUS_OUT); OS::get_singleton()->get_main_loop()->notification(MainLoop::NOTIFICATION_APPLICATION_FOCUS_OUT);
} }
Input::get_singleton()->release_pressed_events();
} }
} }