KeyboardSettings: Improve KeymapDialog layout

This commit is contained in:
FrHun 2022-07-05 17:09:08 +02:00 committed by Andreas Kling
parent c79e3e5a8b
commit 6f0fde4559
Notes: sideshowbarker 2024-07-17 08:54:44 +09:00

View file

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