summaryrefslogtreecommitdiffstats
path: root/editor/create_dialog.h
diff options
context:
space:
mode:
authortoger5 <toger5@hotmail.de>2017-09-29 20:57:31 +0200
committertoger5 <toger5@hotmail.de>2017-09-29 21:00:10 +0200
commit3f423342f4d28b8cd4a8ef1b783ffc76425ce1e0 (patch)
tree616f507b0d65ced6fedd50f494d28022641a4506 /editor/create_dialog.h
parentdee100139008bd4dd8c270da6a7f5aa326a32c25 (diff)
downloadredot-engine-3f423342f4d28b8cd4a8ef1b783ffc76425ce1e0.tar.gz
create dialog search preferrence fixes: #11697
Diffstat (limited to 'editor/create_dialog.h')
-rw-r--r--editor/create_dialog.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/editor/create_dialog.h b/editor/create_dialog.h
index a523539ba0..2e4ce9b277 100644
--- a/editor/create_dialog.h
+++ b/editor/create_dialog.h
@@ -53,7 +53,7 @@ class CreateDialog : public ConfirmationDialog {
LineEdit *search_box;
Tree *search_options;
String base_type;
-
+ String preferred_search_result_type;
EditorHelpBit *help_bit;
void _item_selected();
@@ -93,6 +93,9 @@ public:
void set_base_type(const String &p_base);
String get_base_type() const;
+ void set_preferred_search_result_type(const String &p_preferred_type);
+ String get_preferred_search_result_type();
+
void popup_create(bool p_dontclear);
CreateDialog();