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 /scene | |
parent | e142c10fc54eb00d4177fe11c93d332d1a79b03f (diff) |
Make `TabBar/Container` default their alignments to the left instead of center
Diffstat (limited to 'scene')
-rw-r--r-- | scene/gui/tab_bar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/tab_bar.h b/scene/gui/tab_bar.h index 0f2184aca7..e0c4ba85ef 100644 --- a/scene/gui/tab_bar.h +++ b/scene/gui/tab_bar.h @@ -86,7 +86,7 @@ private: Vector<Tab> tabs; int current = 0; int previous = 0; - AlignmentMode tab_alignment = ALIGNMENT_CENTER; + AlignmentMode tab_alignment = ALIGNMENT_LEFT; bool clip_tabs = true; int rb_hover = -1; bool rb_pressing = false; |