summaryrefslogtreecommitdiff
path: root/Userland/Applications/KeyboardSettings/KeymapDialog.gml
blob: 71e1efbe62e327fbcc5211fcd961c1f68398ffa6 (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
30
31
32
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
        }
    }
}