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/scene_create_dialog.cpp | |
parent | d9e2fc74c73204d03a6d4431feef44085c7663df (diff) | |
download | redot-engine-ca18a06ecbf68db50d8d7e7391b73a245c745cea.tar.gz |
[Scene] Add `SceneStringNames::confirmed`
Diffstat (limited to 'editor/scene_create_dialog.cpp')
-rw-r--r-- | editor/scene_create_dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/scene_create_dialog.cpp b/editor/scene_create_dialog.cpp index fe773378b0..36455be0bb 100644 --- a/editor/scene_create_dialog.cpp +++ b/editor/scene_create_dialog.cpp @@ -72,7 +72,7 @@ void SceneCreateDialog::config(const String &p_dir) { void SceneCreateDialog::accept_create() { if (!get_ok_button()->is_disabled()) { hide(); - emit_signal(SNAME("confirmed")); + emit_signal(SceneStringName(confirmed)); } } |