Explorar el Código

Merge pull request #83301 from Alex2782/touch_screen_button_physics_process

Fix Android logic for deferred window input events being inverted
Rémi Verschelde hace 1 año
padre
commit
4ec07ffb44
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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);
 		}
 	}
 }