diff options
author | Michael Alexsander Silva Dias <michaelalexsander@protonmail.com> | 2018-07-30 19:08:48 -0300 |
---|---|---|
committer | Michael Alexsander Silva Dias <michaelalexsander@protonmail.com> | 2018-07-30 19:12:31 -0300 |
commit | 22ffaded01188f9a531495c55cfb876b766cabab (patch) | |
tree | 92930f979e39e2e15178a2dcc859ee872fe0e9cb /editor/editor_node.cpp | |
parent | 5a5614e8adcc49b92621dc2f39364385769d36a0 (diff) |
Adjust bottom panel's minimal height for the expand icon
Diffstat (limited to 'editor/editor_node.cpp')
-rw-r--r-- | editor/editor_node.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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); |