Ensure `joy_connection_changed` is emitted on the main thread

(cherry picked from commit 1bb73b0689)
This commit is contained in:
Ricardo Subtil 2023-08-08 21:51:33 +01:00 committed by Rémi Verschelde
parent 5c80d42561
commit d0d2680245
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 3 additions and 2 deletions

View File

@ -298,8 +298,9 @@ void InputDefault::joy_connection_changed(int p_idx, bool p_connected, String p_
}; };
joy_names[p_idx] = js; joy_names[p_idx] = js;
emit_signal("joy_connection_changed", p_idx, p_connected); // Ensure this signal is emitted on the main thread, as some platforms (e.g. Linux) call this from a different thread.
}; call_deferred("emit_signal", "joy_connection_changed", p_idx, p_connected);
}
Vector3 InputDefault::get_gravity() const { Vector3 InputDefault::get_gravity() const {
_THREAD_SAFE_METHOD_ _THREAD_SAFE_METHOD_