diff options
author | Danil Alexeev <danil@alexeev.xyz> | 2024-03-18 09:49:21 +0300 |
---|---|---|
committer | Danil Alexeev <danil@alexeev.xyz> | 2024-03-18 09:49:21 +0300 |
commit | 9b7dcfa0e2c2669f7ba2c34cd45482279028d5b5 (patch) | |
tree | debd2007f3a350f5345cefefe2eb2e086f9f11be /editor/editor_inspector.cpp | |
parent | fe01776f05b1787b28b4a270d53037a3c25f4ca2 (diff) | |
download | redot-engine-9b7dcfa0e2c2669f7ba2c34cd45482279028d5b5.tar.gz |
Editor: Fix same-name (sub)groups interfering in Inspector
Clear (sub)group hashmaps when changing category.
Diffstat (limited to 'editor/editor_inspector.cpp')
-rw-r--r-- | editor/editor_inspector.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index a14c6e8462..d2c089cbea 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -2806,6 +2806,9 @@ void EditorInspector::update_tree() { subgroup_base = ""; section_depth = 0; + vbox_per_path.clear(); + editor_inspector_array_per_prefix.clear(); + if (!show_categories) { continue; } |