summaryrefslogtreecommitdiffstats
path: root/editor/create_dialog.h
diff options
context:
space:
mode:
authorNathan Franke <me@nathan.sh>2022-08-22 19:03:19 -0500
committerNathan Franke <me@nathan.sh>2022-09-07 21:44:33 -0500
commita258101971ce84d2a0a0cffa3c7861551a085c3a (patch)
tree6779bdffd52c9c0b0180e80b506c65552aaced97 /editor/create_dialog.h
parent5803a1ddc5024bcea6fa5482bee206ccac94d62e (diff)
downloadredot-engine-a258101971ce84d2a0a0cffa3c7861551a085c3a.tar.gz
simplify title of create/change node dialog
The create dialog in replace mode now always has the title `Change type of "%s"`, where `%s` is either "MyNodeName" or "MyVisualScript.vs".
Diffstat (limited to 'editor/create_dialog.h')
-rw-r--r--editor/create_dialog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/create_dialog.h b/editor/create_dialog.h
index f7731d2726..f2e741624f 100644
--- a/editor/create_dialog.h
+++ b/editor/create_dialog.h
@@ -120,7 +120,7 @@ public:
void set_preferred_search_result_type(const String &p_preferred_type) { preferred_search_result_type = p_preferred_type; }
String get_preferred_search_result_type() { return preferred_search_result_type; }
- void popup_create(bool p_dont_clear, bool p_replace_mode = false, const String &p_select_type = "Node", const String &p_select_name = "");
+ void popup_create(bool p_dont_clear, bool p_replace_mode = false, const String &p_current_type = "", const String &p_current_name = "");
CreateDialog();
};