Make TabBar/Container default their alignments to the left instead of center

This commit is contained in:
Michael Alexsander
2022-03-07 11:32:49 -03:00
parent e142c10fc5
commit deb1342036
19 changed files with 11 additions and 16 deletions

View File

@ -2560,7 +2560,6 @@ ProjectManager::ProjectManager() {
tabs = memnew(TabContainer);
center_box->add_child(tabs);
tabs->set_anchors_and_offsets_preset(Control::PRESET_WIDE);
tabs->set_tab_alignment(TabBar::ALIGNMENT_LEFT);
tabs->connect("tab_changed", callable_mp(this, &ProjectManager::_on_tab_changed));
HBoxContainer *projects_hb = memnew(HBoxContainer);