ソースを参照

Merge pull request #5439 from samuelgrigolato/fix-filesystem-dock-min-size

Fix issue when switching between FileSystem and other editor docks
Rémi Verschelde 9 年 前
コミット
3fc115e433
1 ファイル変更2 行追加1 行削除
  1. 2 1
      tools/editor/scenes_dock.cpp

+ 2 - 1
tools/editor/scenes_dock.cpp

@@ -164,12 +164,14 @@ void ScenesDock::_notification(int p_what) {
 				if (split_mode) {
 
 					file_list_vb->hide();
+					tree->set_custom_minimum_size(Size2(0,0));
 					tree->set_v_size_flags(SIZE_EXPAND_FILL);
 					button_back->show();
 				} else {
 
 					tree->show();
 					file_list_vb->show();
+					tree->set_custom_minimum_size(Size2(0,200)*EDSCALE);
 					tree->set_v_size_flags(SIZE_FILL);
 					button_back->hide();
 					if (!EditorFileSystem::get_singleton()->is_scanning()) {
@@ -1702,7 +1704,6 @@ ScenesDock::ScenesDock(EditorNode *p_editor) {
 
 	tree->set_hide_root(true);
 	split_box->add_child(tree);
-	tree->set_custom_minimum_size(Size2(0,200)*EDSCALE);
 	tree->set_drag_forwarding(this);