diff options
Diffstat (limited to 'Userland/Applications/KeyboardSettings/KeymapDialog.gml')
-rw-r--r-- | Userland/Applications/KeyboardSettings/KeymapDialog.gml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Userland/Applications/KeyboardSettings/KeymapDialog.gml b/Userland/Applications/KeyboardSettings/KeymapDialog.gml new file mode 100644 index 0000000000..71e1efbe62 --- /dev/null +++ b/Userland/Applications/KeyboardSettings/KeymapDialog.gml @@ -0,0 +1,33 @@ +@GUI::Widget { + fill_with_background_color: true + + layout: @GUI::VerticalBoxLayout { + margins: [4] + } + + @GUI::ComboBox { + name: "keymaps_combobox" + } + + @GUI::Widget { + fixed_height: 24 + + layout: @GUI::HorizontalBoxLayout { + } + + @GUI::Widget { + } + + @GUI::Button { + name: "ok_button" + text: "OK" + fixed_width: 75 + } + + @GUI::Button { + name: "cancel_button" + text: "Cancel" + fixed_width: 75 + } + } +} |