diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-05-14 14:28:18 +0200 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-06-19 09:40:54 +0200 |
commit | ca18a06ecbf68db50d8d7e7391b73a245c745cea (patch) | |
tree | d71ddc580b1c8d61d766b43dfaf6266ab7cb3ef2 /editor/plugins/path_3d_editor_plugin.cpp | |
parent | d9e2fc74c73204d03a6d4431feef44085c7663df (diff) | |
download | redot-engine-ca18a06ecbf68db50d8d7e7391b73a245c745cea.tar.gz |
[Scene] Add `SceneStringNames::confirmed`
Diffstat (limited to 'editor/plugins/path_3d_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/path_3d_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/path_3d_editor_plugin.cpp b/editor/plugins/path_3d_editor_plugin.cpp index 447e82f70d..240206e124 100644 --- a/editor/plugins/path_3d_editor_plugin.cpp +++ b/editor/plugins/path_3d_editor_plugin.cpp @@ -881,7 +881,7 @@ Path3DEditorPlugin::Path3DEditorPlugin() { clear_points_dialog = memnew(ConfirmationDialog); clear_points_dialog->set_title(TTR("Please Confirm...")); clear_points_dialog->set_text(TTR("Remove all curve points?")); - clear_points_dialog->connect("confirmed", callable_mp(this, &Path3DEditorPlugin::_clear_points)); + clear_points_dialog->connect(SceneStringName(confirmed), callable_mp(this, &Path3DEditorPlugin::_clear_points)); topmenu_bar->add_child(clear_points_dialog); handle_menu = memnew(MenuButton); |