Skip to content

Commit

Permalink
Fix Android logic for deferred window input events being inverted
Browse files Browse the repository at this point in the history
Notably fixes issues with `is_action_just_*` queries in `_physics_process`
for TouchScreenButton.

Fixes #66318.
Fixes #82396.
  • Loading branch information
Alex2782 authored and akien-mga committed Oct 24, 2023
1 parent 50d17f6 commit 5137497
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platform/android/display_server_android.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -310,9 +310,9 @@ void DisplayServerAndroid::window_set_drop_files_callback(const Callable &p_call
void DisplayServerAndroid::_window_callback(const Callable &p_callable, const Variant &p_arg, bool p_deferred) const {
if (!p_callable.is_null()) {
if (p_deferred) {
p_callable.call(p_arg);
} else {
p_callable.call_deferred(p_arg);
} else {
p_callable.call(p_arg);
}
}
}
Expand Down

0 comments on commit 5137497

Please sign in to comment.