mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-29 14:14:45 +03:00
cce9172cd4
And adjust some GML properties. Since a808cfa
, splitters grow
opportunistically. Setting them to fixed sizes now quite literally
fixes them in place. Fixes immovable splitters missed in the
aforementioned commit.
28 lines
539 B
Plaintext
28 lines
539 B
Plaintext
@GUI::Widget {
|
|
fill_with_background_color: true
|
|
layout: @GUI::VerticalBoxLayout {
|
|
spacing: 2
|
|
}
|
|
|
|
@GUI::HorizontalSplitter {
|
|
@GUI::TreeView {
|
|
name: "mailbox_list"
|
|
preferred_width: 250
|
|
}
|
|
|
|
@GUI::VerticalSplitter {
|
|
@GUI::TableView {
|
|
name: "individual_mailbox_view"
|
|
}
|
|
|
|
@WebView::OutOfProcessWebView {
|
|
name: "web_view"
|
|
}
|
|
}
|
|
}
|
|
|
|
@GUI::Statusbar {
|
|
name: "statusbar"
|
|
}
|
|
}
|