summaryrefslogtreecommitdiff
path: root/Userland/Applications/KeyboardSettings/KeymapDialog.gml
blob: f9c0a0aafeed5bf0063aa5b25b79b7b377d3831d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
@GUI::Widget {
    fill_with_background_color: true
    layout: @GUI::VerticalBoxLayout {
        margins: [4]
    }

    @GUI::ComboBox {
        name: "keymaps_combobox"
    }

    @GUI::Widget {
        layout: @GUI::HorizontalBoxLayout {
            spacing: 6
        }
        preferred_height: "fit"

        @GUI::Layout::Spacer {}

        @GUI::DialogButton {
            name: "ok_button"
            text: "OK"
        }

        @GUI::DialogButton {
            name: "cancel_button"
            text: "Cancel"
        }
    }
}