mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-12 14:12:52 +00:00
25 lines
478 B
Text
25 lines
478 B
Text
@GUI::Widget {
|
|
name: "wizards_tab"
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [4, 4, 4, 4]
|
|
}
|
|
|
|
@GUI::GroupBox {
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [8, 8, 8, 8]
|
|
}
|
|
|
|
@GUI::Button {
|
|
name: "wizard_button"
|
|
text: "Start wizard"
|
|
}
|
|
|
|
@GUI::HorizontalSeparator {
|
|
}
|
|
|
|
@GUI::TextEditor {
|
|
name: "wizard_output"
|
|
mode: "ReadOnly"
|
|
}
|
|
}
|
|
}
|