소스 검색

Fix SpriteFrames editor visibility problems

kobewi 1 년 전
부모
커밋
969bfeae4c
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);
 	} else {
 		button->hide();
-		frames_editor->edit(Ref<SpriteFrames>());
+		if (frames_editor->is_visible_in_tree()) {
+			EditorNode::get_bottom_panel()->hide_bottom_panel();
+		}
 	}
 }