diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-01-17 20:16:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-17 20:16:06 +0100 |
commit | ae52ad2fc4b7e8fd7e1a64bb6568adccfc5c36d3 (patch) | |
tree | ea4346e48105aedc7f2ac7f3599fad80ad69c3d5 /editor/create_dialog.h | |
parent | 324dca57af03df66b6314cc29f46f8ebb4ec59b2 (diff) | |
parent | c63f23bcaac69f7d55d8317b966d3e7885ab1f24 (diff) | |
download | redot-engine-ae52ad2fc4b7e8fd7e1a64bb6568adccfc5c36d3.tar.gz |
Merge pull request #55509 from V-Sekai/create_node_and_doc_fix
Fix crashes when global named scripts extends an unnamed script
Diffstat (limited to 'editor/create_dialog.h')
-rw-r--r-- | editor/create_dialog.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/editor/create_dialog.h b/editor/create_dialog.h index a22906c5f0..f905160df3 100644 --- a/editor/create_dialog.h +++ b/editor/create_dialog.h @@ -41,6 +41,12 @@ class CreateDialog : public ConfirmationDialog { GDCLASS(CreateDialog, ConfirmationDialog); + enum TypeCategory { + CPP_TYPE, + PATH_TYPE, + OTHER_TYPE + }; + LineEdit *search_box; Tree *search_options; @@ -62,8 +68,8 @@ class CreateDialog : public ConfirmationDialog { void _update_search(); bool _should_hide_type(const String &p_type) const; - void _add_type(const String &p_current, bool p_cpp_type); - void _configure_search_option_item(TreeItem *r_item, const String &p_type, const bool p_cpp_type); + void _add_type(const String &p_type, const TypeCategory p_type_category); + void _configure_search_option_item(TreeItem *r_item, const String &p_type, const TypeCategory p_type_category); String _top_result(const Vector<String> p_candidates, const String &p_search_text) const; float _score_type(const String &p_type, const String &p_search) const; bool _is_type_preferred(const String &p_type) const; |