summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-06-27 00:18:58 +0200
committerGitHub <noreply@github.com>2020-06-27 00:18:58 +0200
commitbcf7e51689442f7fdb369509ccf0738dcc736e96 (patch)
treedf3f0153d0cd33fe47780616d699786cfe76ecae /editor
parentb55d859c5f092d145cd0d2c8df9ac5d42c500626 (diff)
parente6352d1daae4295e6f1ac6c9624e2d84fbc54f15 (diff)
Merge pull request #39177 from Calinou/distraction-free-keep-bottom-panel-visible
Keep the bottom panel visible when enabling the distraction-free mode
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_node.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp
index 8940291626..30aa24695c 100644
--- a/editor/editor_node.cpp
+++ b/editor/editor_node.cpp
@@ -4159,7 +4159,6 @@ void EditorNode::_update_dock_slots_visibility() {
}
right_hsplit->hide();
- bottom_panel->hide();
} else {
for (int i = 0; i < DOCK_SLOT_MAX; i++) {
int tabs_visible = 0;
@@ -4189,7 +4188,6 @@ void EditorNode::_update_dock_slots_visibility() {
dock_slot[i]->set_current_tab(0);
}
}
- bottom_panel->show();
if (right_l_vsplit->is_visible() || right_r_vsplit->is_visible()) {
right_hsplit->show();