diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2022-03-07 11:32:49 -0300 |
---|---|---|
committer | Michael Alexsander <michaelalexsander@protonmail.com> | 2022-03-17 18:12:23 -0300 |
commit | deb1342036555763da5c2133c178068153136fef (patch) | |
tree | 568ccc5bad3d61742c8652eb20e8ffc42bb6b22e /editor/editor_about.cpp | |
parent | e142c10fc54eb00d4177fe11c93d332d1a79b03f (diff) | |
download | redot-engine-deb1342036555763da5c2133c178068153136fef.tar.gz |
Make `TabBar/Container` default their alignments to the left instead of center
Diffstat (limited to 'editor/editor_about.cpp')
-rw-r--r-- | editor/editor_about.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp index 4ba30eaa0e..767e531338 100644 --- a/editor/editor_about.cpp +++ b/editor/editor_about.cpp @@ -159,6 +159,7 @@ EditorAbout::EditorAbout() { hbc->add_child(version_info_vbc); TabContainer *tc = memnew(TabContainer); + tc->set_tab_alignment(TabBar::ALIGNMENT_CENTER); tc->set_custom_minimum_size(Size2(950, 400) * EDSCALE); tc->set_v_size_flags(Control::SIZE_EXPAND_FILL); vbc->add_child(tc); |