mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +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.
18 lines
318 B
Text
18 lines
318 B
Text
@GUI::Widget {
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [20]
|
|
}
|
|
|
|
@GUI::Label {
|
|
text: "Please wait..."
|
|
text_alignment: "TopLeft"
|
|
fixed_height: 32
|
|
}
|
|
|
|
@GUI::Progressbar {
|
|
name: "page_2_progressbar"
|
|
fixed_height: 28
|
|
}
|
|
|
|
@GUI::Layout::Spacer {}
|
|
}
|