diff options
author | RedMser <redmser.jj2@gmail.com> | 2024-02-25 13:38:44 +0100 |
---|---|---|
committer | RedMser <redmser.jj2@gmail.com> | 2024-02-25 21:12:17 +0100 |
commit | 7a08b1fcd6f8b1ac95eab1105c0a4c0f685886cf (patch) | |
tree | 711347186373eddcfbd23cef567480f81e1a248d /editor/editor_inspector.cpp | |
parent | 81f3d43cc1ba01136795fb2059bbaa55bc514a16 (diff) | |
download | redot-engine-7a08b1fcd6f8b1ac95eab1105c0a4c0f685886cf.tar.gz |
Inspector changes indicator propagates upwards
Diffstat (limited to 'editor/editor_inspector.cpp')
-rw-r--r-- | editor/editor_inspector.cpp | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index 3ee61f5203..e4a5ab86d9 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -2616,8 +2616,17 @@ void EditorInspector::_parse_added_editors(VBoxContainer *current_vbox, EditorIn } } - if (p_section) { - ep->connect("property_can_revert_changed", callable_mp(p_section, &EditorInspectorSection::property_can_revert_changed)); + Node *section_search = p_section; + while (section_search) { + EditorInspectorSection *section = Object::cast_to<EditorInspectorSection>(section_search); + if (section) { + ep->connect("property_can_revert_changed", callable_mp(section, &EditorInspectorSection::property_can_revert_changed)); + } + section_search = section_search->get_parent(); + if (Object::cast_to<EditorInspector>(section_search)) { + // Skip sub-resource inspectors. + break; + } } ep->set_read_only(read_only); @@ -3311,9 +3320,17 @@ void EditorInspector::update_tree() { } } - EditorInspectorSection *section = Object::cast_to<EditorInspectorSection>(current_vbox->get_parent()); - if (section) { - ep->connect("property_can_revert_changed", callable_mp(section, &EditorInspectorSection::property_can_revert_changed)); + Node *section_search = current_vbox->get_parent(); + while (section_search) { + EditorInspectorSection *section = Object::cast_to<EditorInspectorSection>(section_search); + if (section) { + ep->connect("property_can_revert_changed", callable_mp(section, &EditorInspectorSection::property_can_revert_changed)); + } + section_search = section_search->get_parent(); + if (Object::cast_to<EditorInspector>(section_search)) { + // Skip sub-resource inspectors. + break; + } } ep->set_draw_warning(draw_warning); |