diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2022-09-27 12:05:58 +0100 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2022-09-29 08:31:15 -0400 |
commit | a58d72656d2309b7ea5ab682115fefed6c04e1c0 (patch) | |
tree | 4a00cddf40744c333603086608082cde9e8fe712 /Userland/Libraries/LibGUI/FontPickerDialog.gml | |
parent | 7fda0162179469dc7ec326b9d0140c8602dcaccb (diff) | |
download | serenity-a58d72656d2309b7ea5ab682115fefed6c04e1c0.zip |
Userland: Replace empty `GUI::Widget`s in GML with `GUI::Layout::Spacer`
This fixes the "Cancel" button on HackStudio's "New Project" dialog
being too small. It's also clearer what these actually are.
Diffstat (limited to 'Userland/Libraries/LibGUI/FontPickerDialog.gml')
-rw-r--r-- | Userland/Libraries/LibGUI/FontPickerDialog.gml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/FontPickerDialog.gml b/Userland/Libraries/LibGUI/FontPickerDialog.gml index 6d6074fcd0..ddf0fe0afb 100644 --- a/Userland/Libraries/LibGUI/FontPickerDialog.gml +++ b/Userland/Libraries/LibGUI/FontPickerDialog.gml @@ -71,7 +71,7 @@ fixed_height: 22 layout: @GUI::HorizontalBoxLayout {} - @GUI::Widget {} + @GUI::Layout::Spacer {} @GUI::DialogButton { name: "ok_button" |