diff options
author | passivestar <60579014+passivestar@users.noreply.github.com> | 2024-06-26 13:51:05 +0400 |
---|---|---|
committer | passivestar <60579014+passivestar@users.noreply.github.com> | 2024-06-26 16:02:22 +0400 |
commit | 025159f57eaf0b88af8987ff85b831d65b0a1678 (patch) | |
tree | 09ed9ad79d570a8c79c9ad582e1214bf1ca0c47d /editor/editor_inspector.cpp | |
parent | 95110ddcb41ba4b9b1f8c9bf58c8910f6616e60a (diff) | |
download | redot-engine-025159f57eaf0b88af8987ff85b831d65b0a1678.tar.gz |
Hide unused category vboxes in inspector
Diffstat (limited to 'editor/editor_inspector.cpp')
-rw-r--r-- | editor/editor_inspector.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index 6c26231a4b..db77ad1a14 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -3133,6 +3133,7 @@ void EditorInspector::update_tree() { // Recreate the category vbox if it was reset. if (category_vbox == nullptr) { category_vbox = memnew(VBoxContainer); + category_vbox->hide(); main_vbox->add_child(category_vbox); } @@ -3205,6 +3206,7 @@ void EditorInspector::update_tree() { // If we did not find a section to add the property to, add it to the category vbox instead (the category vbox handles margins correctly). if (current_vbox == main_vbox) { + category_vbox->show(); current_vbox = category_vbox; } |