Pārlūkot izejas kodu

LibGUI: Put some more space between check boxes and their label text

Andreas Kling 4 gadi atpakaļ
vecāks
revīzija
551e13b407
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      Userland/Libraries/LibGUI/CheckBox.cpp

+ 1 - 1
Userland/Libraries/LibGUI/CheckBox.cpp

@@ -17,7 +17,7 @@ namespace GUI {
 
 
 static const int s_box_width = 13;
 static const int s_box_width = 13;
 static const int s_box_height = 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)
 CheckBox::CheckBox(String text)
     : AbstractButton(move(text))
     : AbstractButton(move(text))