diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-04 14:16:09 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-04 14:16:09 +0200 |
commit | 8a50218190753891e29354fdca5896d7aadd5d16 (patch) | |
tree | 9ac4220bc32e7f245f355321aa69859f0ae14ce3 /Applications/Taskbar | |
parent | 89c544d97b39b334c51383bb943e153d40e68e7e (diff) | |
download | serenity-8a50218190753891e29354fdca5896d7aadd5d16.zip |
Taskbar: Left-align the text on taskbar window buttons.
Diffstat (limited to 'Applications/Taskbar')
-rw-r--r-- | Applications/Taskbar/TaskbarWindow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Applications/Taskbar/TaskbarWindow.cpp b/Applications/Taskbar/TaskbarWindow.cpp index b93e329831..69e5261da2 100644 --- a/Applications/Taskbar/TaskbarWindow.cpp +++ b/Applications/Taskbar/TaskbarWindow.cpp @@ -41,6 +41,7 @@ GButton* TaskbarWindow::create_button() button->set_size_policy(SizePolicy::Fixed, SizePolicy::Fixed); button->set_preferred_size({ 100, 22 }); button->set_checkable(true); + button->set_text_alignment(TextAlignment::CenterLeft); return button; } |