From 22ffaded01188f9a531495c55cfb876b766cabab Mon Sep 17 00:00:00 2001 From: Michael Alexsander Silva Dias Date: Mon, 30 Jul 2018 19:08:48 -0300 Subject: Adjust bottom panel's minimal height for the expand icon --- editor/editor_node.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 212ee33ffa..8cc61421cf 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -5434,6 +5434,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); -- cgit v1.2.3