Add small spacing between top bars in main editor and project manager

This commit is contained in:
Michael Alexsander Silva Dias 2019-02-20 12:08:52 -03:00
parent 310c755a0f
commit 0de15955ad
2 changed files with 2 additions and 0 deletions

View file

@ -5004,6 +5004,7 @@ EditorNode::EditorNode() {
main_vbox = memnew(VBoxContainer);
gui_base->add_child(main_vbox);
main_vbox->set_anchors_and_margins_preset(Control::PRESET_WIDE, Control::PRESET_MODE_MINSIZE, 8);
main_vbox->add_constant_override("separation", 8 * EDSCALE);
menu_hb = memnew(HBoxContainer);
main_vbox->add_child(menu_hb);

View file

@ -1901,6 +1901,7 @@ ProjectManager::ProjectManager() {
VBoxContainer *vb = memnew(VBoxContainer);
panel->add_child(vb);
vb->set_anchors_and_margins_preset(Control::PRESET_WIDE, Control::PRESET_MODE_MINSIZE, 8 * EDSCALE);
vb->add_constant_override("separation", 8 * EDSCALE);
String cp;
cp += 0xA9;