ソースを参照

Merge pull request #83301 from Alex2782/touch_screen_button_physics_process

Fix Android logic for deferred window input events being inverted
Rémi Verschelde 1 年間 前
コミット
4ec07ffb44
1 ファイル変更2 行追加2 行削除
  1. 2 2
      platform/android/display_server_android.cpp

+ 2 - 2
platform/android/display_server_android.cpp

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