diff options
Diffstat (limited to 'editor/gui/scene_tree_editor.cpp')
-rw-r--r-- | editor/gui/scene_tree_editor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/gui/scene_tree_editor.cpp b/editor/gui/scene_tree_editor.cpp index fc52d7a0ae..aab2149eff 100644 --- a/editor/gui/scene_tree_editor.cpp +++ b/editor/gui/scene_tree_editor.cpp @@ -1690,7 +1690,7 @@ void SceneTreeDialog::_notification(int p_what) { } break; case NOTIFICATION_ENTER_TREE: { - connect("confirmed", callable_mp(this, &SceneTreeDialog::_select)); + connect(SceneStringName(confirmed), callable_mp(this, &SceneTreeDialog::_select)); } break; case NOTIFICATION_THEME_CHANGED: { @@ -1702,7 +1702,7 @@ void SceneTreeDialog::_notification(int p_what) { } break; case NOTIFICATION_EXIT_TREE: { - disconnect("confirmed", callable_mp(this, &SceneTreeDialog::_select)); + disconnect(SceneStringName(confirmed), callable_mp(this, &SceneTreeDialog::_select)); } break; } } |