summaryrefslogtreecommitdiffstats
path: root/editor/create_dialog.h
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2023-01-27 12:20:02 +0100
committerkobewi <kobewi4e@gmail.com>2023-01-27 12:26:26 +0100
commit970f5533dd4a7b0f55f224b3224ea882565cf88a (patch)
treeb60a378692d004faeee588c34799ffff0cf2428a /editor/create_dialog.h
parent9d555f5c6853c0f97136532d1c71ee3a06fd82dc (diff)
downloadredot-engine-970f5533dd4a7b0f55f224b3224ea882565cf88a.tar.gz
Fix filtering editor nodes in Create Dialog
Diffstat (limited to 'editor/create_dialog.h')
-rw-r--r--editor/create_dialog.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/create_dialog.h b/editor/create_dialog.h
index ad63346a02..37579812cf 100644
--- a/editor/create_dialog.h
+++ b/editor/create_dialog.h
@@ -51,6 +51,7 @@ class CreateDialog : public ConfirmationDialog {
Tree *search_options = nullptr;
String base_type;
+ bool is_base_type_node = false;
String icon_fallback;
String preferred_search_result_type;
@@ -113,7 +114,7 @@ public:
Variant instantiate_selected();
String get_selected_type();
- void set_base_type(const String &p_base) { base_type = p_base; }
+ void set_base_type(const String &p_base);
String get_base_type() const { return base_type; }
void select_base();