1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 04:48:14 +00:00
serenity/Userland/Demos/WidgetGallery/GalleryGML/WizardsTab.gml
Idan Horowitz c8ab45e79f Userland: Run gml-format
This brings the existing GML files up to spec with the new requirements
2022-02-13 02:36:35 +02:00

24 lines
451 B
Text

@GUI::Widget {
name: "wizards_tab"
layout: @GUI::VerticalBoxLayout {
margins: [4]
}
@GUI::GroupBox {
layout: @GUI::VerticalBoxLayout {
margins: [6]
}
@GUI::Button {
name: "wizard_button"
text: "Start wizard"
}
@GUI::HorizontalSeparator {}
@GUI::TextEditor {
name: "wizard_output"
mode: "ReadOnly"
}
}
}