diff options
author | Yuri Sizov <yuris@humnom.net> | 2021-11-08 23:53:41 +0300 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2022-02-10 20:29:34 +0300 |
commit | 107b6f299cda3f8b63432930f19cdd9bc24fb6dc (patch) | |
tree | 24026b11ed93dea43d86c16544e2ac40ec030517 /editor/editor_inspector.h | |
parent | 242c636a63ac2d8b002ace37388dce9273a9048a (diff) | |
download | redot-engine-107b6f299cda3f8b63432930f19cdd9bc24fb6dc.tar.gz |
Reorganize inspector layout workflow for Control nodes
Diffstat (limited to 'editor/editor_inspector.h')
-rw-r--r-- | editor/editor_inspector.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/editor/editor_inspector.h b/editor/editor_inspector.h index 162d45f8b7..43f71740e3 100644 --- a/editor/editor_inspector.h +++ b/editor/editor_inspector.h @@ -261,17 +261,18 @@ class EditorInspectorSection : public Container { String label; String section; - bool vbox_added; // Optimization. + bool vbox_added = false; // Optimization. Color bg_color; - bool foldable; + bool foldable = false; + int indent_depth = 0; Timer *dropping_unfold_timer; - bool dropping; + bool dropping = false; void _test_unfold(); protected: - Object *object; + Object *object = nullptr; VBoxContainer *vbox; void _notification(int p_what); @@ -281,7 +282,7 @@ protected: public: virtual Size2 get_minimum_size() const override; - void setup(const String &p_section, const String &p_label, Object *p_object, const Color &p_bg_color, bool p_foldable); + void setup(const String &p_section, const String &p_label, Object *p_object, const Color &p_bg_color, bool p_foldable, int p_indent_depth = 0); VBoxContainer *get_vbox(); void unfold(); void fold(); |