1
0
Fork 0

Merge pull request #101458 from syntaxerror247/fix-back-request

Fix double emission of `NOTIFICATION_WM_GO_BACK_REQUEST`
This commit is contained in:
Rémi Verschelde 2025-01-13 20:22:24 +01:00
commit aa72d56d50
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ void AndroidInputHandler::process_key_event(int p_physical_keycode, int p_unicod
_set_key_modifier_state(ev, keycode);
if (p_physical_keycode == AKEYCODE_BACK) {
if (p_physical_keycode == AKEYCODE_BACK && p_pressed) {
if (DisplayServerAndroid *dsa = Object::cast_to<DisplayServerAndroid>(DisplayServer::get_singleton())) {
dsa->send_window_event(DisplayServer::WINDOW_EVENT_GO_BACK_REQUEST, true);
}