summaryrefslogtreecommitdiff
path: root/Userland/Applications/ThemeEditor/PathProperty.gml
blob: 4d5d0e3f565f43014b1905754c947c1b5e764db6 (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
@GUI::Frame {
    layout: @GUI::HorizontalBoxLayout {
        spacing: 4
    }
    preferred_height: "fit"

    @GUI::Label {
        name: "name"
        text: "Some path"
        text_alignment: "CenterLeft"
        fixed_width: 200
    }

    @GUI::TextBox {
        name: "path_input"
    }

    @GUI::Button {
        name: "path_picker_button"
        fixed_width: 22
        icon: "/res/icons/16x16/open.png"
        tooltip: "Choose..."
    }
}