1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-29 17:35:06 +00:00

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

This commit is contained in:
Andreas Kling 2021-05-16 21:15:34 +02:00
parent 3c831b146c
commit 551e13b407

View file

@ -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))