mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
8081a8a5de
This is a bit of a hack, but it is an easy way to finally get spacers into GML. This will translate well if spacers are later to become child objects of the continer widget.
32 lines
609 B
Text
32 lines
609 B
Text
@GUI::Widget {
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [20]
|
|
}
|
|
|
|
@GUI::Label {
|
|
text: "Please select an installation directory."
|
|
text_alignment: "TopLeft"
|
|
fixed_height: 32
|
|
}
|
|
|
|
@GUI::Widget {
|
|
fixed_height: 25
|
|
layout: @GUI::HorizontalBoxLayout {}
|
|
|
|
@GUI::Label {
|
|
text: "Location: "
|
|
autosize: true
|
|
}
|
|
|
|
@GUI::TextBox {
|
|
name: "page_1_location_text_box"
|
|
}
|
|
|
|
@GUI::Button {
|
|
text: "Browse"
|
|
fixed_width: 75
|
|
}
|
|
}
|
|
|
|
@GUI::Layout::Spacer {}
|
|
}
|