diff options
Diffstat (limited to 'editor/property_editor.h')
| -rw-r--r-- | editor/property_editor.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/editor/property_editor.h b/editor/property_editor.h index e69ca8bcd5..bcabccc6fd 100644 --- a/editor/property_editor.h +++ b/editor/property_editor.h @@ -1,4 +1,4 @@ -/*************************************************************************/ +/*************************************************************************/ /* property_editor.h */ /*************************************************************************/ /* This file is part of: */ @@ -203,9 +203,9 @@ class PropertyEditor : public Control { bool hide_script; bool use_folding; bool property_selectable; - bool updating_folding; + List<String> foldable_property_cache; HashMap<String, String> pending; String selected_property; @@ -304,6 +304,9 @@ public: void set_property_selectable(bool p_selectable); void set_use_folding(bool p_enable); + + void collapse_all_folding(); + void expand_all_folding(); PropertyEditor(); ~PropertyEditor(); }; |