Taskbar: Left-align the text on taskbar window buttons.

This commit is contained in:
Andreas Kling 2019-04-04 14:16:09 +02:00
commit 8a50218190
Notes: sideshowbarker 2024-07-19 14:49:36 +09:00

View file

@ -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;
}