From 8a50218190753891e29354fdca5896d7aadd5d16 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 4 Apr 2019 14:16:09 +0200 Subject: Taskbar: Left-align the text on taskbar window buttons. --- Applications/Taskbar/TaskbarWindow.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'Applications/Taskbar') 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; } -- cgit v1.2.3