Newer
Older
minerva / Userland / Applications / ThemeEditor / WindowThemeProperty.gml
@minerva minerva on 13 Jul 330 bytes Initial commit
@GUI::Frame {
    layout: @GUI::HorizontalBoxLayout {
        spacing: 4
    }
    preferred_height: "fit"

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

    @GUI::ComboBox {
        name: "combo_box"
        model_only: true
    }
}