diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-07-17 21:05:38 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2017-07-17 22:18:58 -0300 |
commit | bbada82f8088e18b663f087484fcbb662dd76a5a (patch) | |
tree | 5ea77e84771dd4502cef44642001a689fab3cd87 /editor/property_editor.h | |
parent | f36cd77feb9790847c6123eccfa18be74fc89b32 (diff) | |
download | redot-engine-bbada82f8088e18b663f087484fcbb662dd76a5a.tar.gz |
-Reorganized all properties of project settings (Sorry, Again).
(Lot's of bloat accumulated, so it was time for clean up.)
-Made EditorSettings and ProjectSettings search more useful (search in sections too)
Diffstat (limited to 'editor/property_editor.h')
-rw-r--r-- | editor/property_editor.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/editor/property_editor.h b/editor/property_editor.h index 47bd807c3f..1ae44e473b 100644 --- a/editor/property_editor.h +++ b/editor/property_editor.h @@ -1,4 +1,4 @@ -/*************************************************************************/ +/*************************************************************************/ /* property_editor.h */ /*************************************************************************/ /* This file is part of: */ @@ -307,11 +307,15 @@ class SectionedPropertyEditor : public HBoxContainer { Map<String, TreeItem *> section_map; PropertyEditor *editor; + LineEdit *search_box; static void _bind_methods(); void _section_selected(); + void _search_changed(const String &p_what); + public: + void register_search_box(LineEdit *p_box); PropertyEditor *get_property_editor(); void edit(Object *p_object); String get_full_item_path(const String &p_item); |