1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:57:44 +00:00

Taskbar: Make the window buttons slightly wider.

This commit is contained in:
Andreas Kling 2019-04-04 20:12:09 +02:00
parent 02b523f9cd
commit 6280dee625

View file

@ -39,7 +39,7 @@ GButton* TaskbarWindow::create_button()
{ {
auto* button = new GButton(main_widget()); auto* button = new GButton(main_widget());
button->set_size_policy(SizePolicy::Fixed, SizePolicy::Fixed); button->set_size_policy(SizePolicy::Fixed, SizePolicy::Fixed);
button->set_preferred_size({ 100, 22 }); button->set_preferred_size({ 140, 22 });
button->set_checkable(true); button->set_checkable(true);
button->set_text_alignment(TextAlignment::CenterLeft); button->set_text_alignment(TextAlignment::CenterLeft);
return button; return button;