summaryrefslogtreecommitdiffstats
path: root/editor/editor_about.cpp
diff options
context:
space:
mode:
authorMichael Alexsander <michaelalexsander@protonmail.com>2022-03-07 11:32:49 -0300
committerMichael Alexsander <michaelalexsander@protonmail.com>2022-03-17 18:12:23 -0300
commitdeb1342036555763da5c2133c178068153136fef (patch)
tree568ccc5bad3d61742c8652eb20e8ffc42bb6b22e /editor/editor_about.cpp
parente142c10fc54eb00d4177fe11c93d332d1a79b03f (diff)
downloadredot-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.cpp1
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);