Переглянути джерело

Merge pull request #89754 from KoBeWi/bottom_feeder

Fix SpriteFrames editor visibility problems
Rémi Verschelde 1 рік тому
батько
коміт
a95893caef
1 змінених файлів з 3 додано та 1 видалено
  1. 3 1
      editor/plugins/sprite_frames_editor_plugin.cpp

+ 3 - 1
editor/plugins/sprite_frames_editor_plugin.cpp

@@ -2334,7 +2334,9 @@ void SpriteFramesEditorPlugin::make_visible(bool p_visible) {
 		EditorNode::get_bottom_panel()->make_item_visible(frames_editor);
 		EditorNode::get_bottom_panel()->make_item_visible(frames_editor);
 	} else {
 	} else {
 		button->hide();
 		button->hide();
-		frames_editor->edit(Ref<SpriteFrames>());
+		if (frames_editor->is_visible_in_tree()) {
+			EditorNode::get_bottom_panel()->hide_bottom_panel();
+		}
 	}
 	}
 }
 }