Merge pull request #83301 from Alex2782/touch_screen_button_physics_process
Fix Android logic for deferred window input events being inverted
This commit is contained in:
commit
4ec07ffb44
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue