mirror of
https://github.com/godotengine/godot.git
synced 2025-01-26 20:42:55 -05:00
Fix issue when switching between FileSystem and other editor docks. #5384
This commit is contained in:
parent
10f411b47b
commit
f55dc6d0b6
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue