diff options
Diffstat (limited to 'editor/property_selector.cpp')
-rw-r--r-- | editor/property_selector.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/property_selector.cpp b/editor/property_selector.cpp index a5157bd394..9bb1562148 100644 --- a/editor/property_selector.cpp +++ b/editor/property_selector.cpp @@ -410,11 +410,11 @@ void PropertySelector::_hide_requested() { void PropertySelector::_notification(int p_what) { switch (p_what) { case NOTIFICATION_ENTER_TREE: { - connect("confirmed", callable_mp(this, &PropertySelector::_confirmed)); + connect(SceneStringName(confirmed), callable_mp(this, &PropertySelector::_confirmed)); } break; case NOTIFICATION_EXIT_TREE: { - disconnect("confirmed", callable_mp(this, &PropertySelector::_confirmed)); + disconnect(SceneStringName(confirmed), callable_mp(this, &PropertySelector::_confirmed)); } break; } } |