summaryrefslogtreecommitdiff
path: root/Userland/Applications/ThemeEditor/MetricProperty.gml
blob: 11c8e2c8a6d7f60ce54c1a47a83a6901772ab4e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@GUI::Frame {
    layout: @GUI::HorizontalBoxLayout {
        spacing: 4
    }
    preferred_height: "fit"

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

    @GUI::SpinBox {
        name: "spin_box"
    }
}