summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-08-14 15:57:19 +0200
committerGitHub <noreply@github.com>2018-08-14 15:57:19 +0200
commit7a2ad1321a10d30644f8aeed385488e03afc6193 (patch)
treee21cc103b20e4886bbe9a7b9d05684313009e977 /editor
parentc0137db76209c06538ea63338f8745a92579bf5e (diff)
parent22ffaded01188f9a531495c55cfb876b766cabab (diff)
Merge pull request #20621 from YeldhamDev/bottom_panel_min
Adjust bottom panel's minimal height for the expand icon
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_node.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp
index 22e823af86..5748de9d1b 100644
--- a/editor/editor_node.cpp
+++ b/editor/editor_node.cpp
@@ -5448,6 +5448,7 @@ EditorNode::EditorNode() {
bottom_panel->add_child(bottom_panel_vb);
bottom_panel_hb = memnew(HBoxContainer);
+ bottom_panel_hb->set_custom_minimum_size(Size2(0, 24)); // Adjust for the height of the "Expand Bottom Dock" icon.
bottom_panel_vb->add_child(bottom_panel_hb);
bottom_panel_hb_editors = memnew(HBoxContainer);