summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrHun <28605587+frhun@users.noreply.github.com>2022-07-05 17:09:08 +0200
committerAndreas Kling <kling@serenityos.org>2022-07-15 12:34:25 +0200
commit6f0fde45595846fab903e24c8ba070a25dc4e524 (patch)
tree2b560762c9fd968e7004d6d44bf6fd008233a898
parentc79e3e5a8b06c2d96eb3430706ad65dda224eff5 (diff)
downloadserenity-6f0fde45595846fab903e24c8ba070a25dc4e524.zip
KeyboardSettings: Improve KeymapDialog layout
-rw-r--r--Userland/Applications/KeyboardSettings/KeymapDialog.gml14
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
}
}
}