From 6280dee62553808d43b7cf85658d264e2c1188af Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 4 Apr 2019 20:12:09 +0200 Subject: [PATCH] Taskbar: Make the window buttons slightly wider. --- Applications/Taskbar/TaskbarWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/Taskbar/TaskbarWindow.cpp b/Applications/Taskbar/TaskbarWindow.cpp index eb332efdf9..af7d80faf5 100644 --- a/Applications/Taskbar/TaskbarWindow.cpp +++ b/Applications/Taskbar/TaskbarWindow.cpp @@ -39,7 +39,7 @@ GButton* TaskbarWindow::create_button() { auto* button = new GButton(main_widget()); 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_text_alignment(TextAlignment::CenterLeft); return button;