File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ void Joint2D::set_node_a(const NodePath &p_node_a) {
136136 if (Engine::get_singleton ()->is_editor_hint ()) {
137137 // When in editor, the setter may be called as a result of node rename.
138138 // It happens before the node actually changes its name, which triggers false warning.
139- callable_mp (this , &Joint2D::_update_joint).call_deferred ();
139+ callable_mp (this , &Joint2D::_update_joint).call_deferred (false );
140140 } else {
141141 _update_joint ();
142142 }
@@ -157,7 +157,7 @@ void Joint2D::set_node_b(const NodePath &p_node_b) {
157157
158158 b = p_node_b;
159159 if (Engine::get_singleton ()->is_editor_hint ()) {
160- callable_mp (this , &Joint2D::_update_joint).call_deferred ();
160+ callable_mp (this , &Joint2D::_update_joint).call_deferred (false );
161161 } else {
162162 _update_joint ();
163163 }
You can’t perform that action at this time.
0 commit comments