diff options
author | FrHun <28605587+frhun@users.noreply.github.com> | 2022-07-05 17:09:08 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-07-15 12:34:25 +0200 |
commit | 6f0fde45595846fab903e24c8ba070a25dc4e524 (patch) | |
tree | 2b560762c9fd968e7004d6d44bf6fd008233a898 | |
parent | c79e3e5a8b06c2d96eb3430706ad65dda224eff5 (diff) | |
download | serenity-6f0fde45595846fab903e24c8ba070a25dc4e524.zip |
KeyboardSettings: Improve KeymapDialog layout
-rw-r--r-- | Userland/Applications/KeyboardSettings/KeymapDialog.gml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Userland/Applications/KeyboardSettings/KeymapDialog.gml b/Userland/Applications/KeyboardSettings/KeymapDialog.gml index 0fa7ea814a..f9c0a0aafe 100644 --- a/Userland/Applications/KeyboardSettings/KeymapDialog.gml +++ b/Userland/Applications/KeyboardSettings/KeymapDialog.gml @@ -9,21 +9,21 @@ } @GUI::Widget { - fixed_height: 24 - layout: @GUI::HorizontalBoxLayout {} + layout: @GUI::HorizontalBoxLayout { + spacing: 6 + } + preferred_height: "fit" - @GUI::Widget {} + @GUI::Layout::Spacer {} - @GUI::Button { + @GUI::DialogButton { name: "ok_button" text: "OK" - fixed_width: 75 } - @GUI::Button { + @GUI::DialogButton { name: "cancel_button" text: "Cancel" - fixed_width: 75 } } } |