From 551e13b407cfe5d513f75ce391a55e50945ab68c Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 16 May 2021 21:15:34 +0200 Subject: [PATCH] LibGUI: Put some more space between check boxes and their label text --- Userland/Libraries/LibGUI/CheckBox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibGUI/CheckBox.cpp b/Userland/Libraries/LibGUI/CheckBox.cpp index d76a07194c..2cfd26d88c 100644 --- a/Userland/Libraries/LibGUI/CheckBox.cpp +++ b/Userland/Libraries/LibGUI/CheckBox.cpp @@ -17,7 +17,7 @@ namespace GUI { static const int s_box_width = 13; static const int s_box_height = 13; -static const int s_horizontal_padding = 4; +static const int s_horizontal_padding = 6; CheckBox::CheckBox(String text) : AbstractButton(move(text))