summaryrefslogtreecommitdiffstats
path: root/editor/editor_inspector.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-06-26 18:15:24 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-06-26 18:15:24 +0200
commitd119e499021ba7eb6e44d0addf2d4a72e72c64b9 (patch)
tree800f6e4ba2adccd27bf61ae94d92283071e2db23 /editor/editor_inspector.cpp
parent6cdd303c684258774e8da3303e224dbf1e2a5d87 (diff)
parent025159f57eaf0b88af8987ff85b831d65b0a1678 (diff)
downloadredot-engine-d119e499021ba7eb6e44d0addf2d4a72e72c64b9.tar.gz
Merge pull request #93627 from passivestar/inspector-unused-vboxes
Hide unused category vboxes in inspector
Diffstat (limited to 'editor/editor_inspector.cpp')
-rw-r--r--editor/editor_inspector.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp
index 81d9510033..467a19ebb1 100644
--- a/editor/editor_inspector.cpp
+++ b/editor/editor_inspector.cpp
@@ -3137,6 +3137,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);
}
@@ -3209,6 +3210,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;
}