Make remote inspector groups not foldable

This commit is contained in:
kobewi 2022-11-30 15:31:24 +01:00
parent cd491c6e47
commit 5d2a9a3570

View File

@ -2274,7 +2274,9 @@ void EditorNode::_edit_current(bool p_skip_foreign) {
} else {
Node *selected_node = nullptr;
if (current_obj->is_class("MultiNodeEdit")) {
if (current_obj->is_class("EditorDebuggerRemoteObject")) {
disable_folding = true;
} else if (current_obj->is_class("MultiNodeEdit")) {
Node *scene = get_edited_scene();
if (scene) {
MultiNodeEdit *multi_node_edit = Object::cast_to<MultiNodeEdit>(current_obj);