Fixed right dock dragger not disappearing when there is no docks there.
This commit is contained in:
parent
1fa9aac3e4
commit
68a6edfd1b
1 changed files with 15 additions and 1 deletions
|
@ -3529,6 +3529,11 @@ void EditorNode::_dock_select_input(const Ref<InputEvent> &p_input) {
|
|||
splits[i]->hide();
|
||||
}
|
||||
|
||||
if (right_l_vsplit->is_visible() || right_r_vsplit->is_visible())
|
||||
right_hsplit->show();
|
||||
else
|
||||
right_hsplit->hide();
|
||||
|
||||
_edit_current();
|
||||
_save_docks();
|
||||
}
|
||||
|
@ -3805,7 +3810,11 @@ void EditorNode::_update_dock_slots_visibility() {
|
|||
}
|
||||
}
|
||||
bottom_panel->show();
|
||||
right_hsplit->show();
|
||||
|
||||
if (right_l_vsplit->is_visible() || right_r_vsplit->is_visible())
|
||||
right_hsplit->show();
|
||||
else
|
||||
right_hsplit->hide();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -3895,6 +3904,11 @@ void EditorNode::_load_docks_from_config(Ref<ConfigFile> p_layout, const String
|
|||
splits[i]->hide();
|
||||
}
|
||||
|
||||
if (right_l_vsplit->is_visible() || right_r_vsplit->is_visible())
|
||||
right_hsplit->show();
|
||||
else
|
||||
right_hsplit->hide();
|
||||
|
||||
for (int i = 0; i < DOCK_SLOT_MAX; i++) {
|
||||
|
||||
if (dock_slot[i]->is_visible() && dock_slot[i]->get_tab_count()) {
|
||||
|
|
Loading…
Reference in a new issue