diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-03-17 23:28:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-17 23:28:10 +0100 |
commit | e195032cbc827ade3d9ce639cd1f06cd16c8b66d (patch) | |
tree | 6d1bdc08f2423ea7e5187fcaea75efe797f9b3da /scene | |
parent | 9263e4e63b8164e894974c9838b40dc0ad3cc566 (diff) | |
parent | deb1342036555763da5c2133c178068153136fef (diff) |
Merge pull request #58866 from YeldhamDev/steer_left
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; |