mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
29 lines
532 B
Plaintext
29 lines
532 B
Plaintext
@GUI::Widget {
|
|
fill_with_background_color: true
|
|
|
|
layout: @GUI::VerticalBoxLayout {
|
|
spacing: 2
|
|
}
|
|
|
|
@GUI::HorizontalSplitter {
|
|
@GUI::TreeView {
|
|
name: "mailbox_list"
|
|
fixed_width: 250
|
|
}
|
|
|
|
@GUI::VerticalSplitter {
|
|
@GUI::TableView {
|
|
name: "individual_mailbox_view"
|
|
}
|
|
|
|
@Web::OutOfProcessWebView {
|
|
name: "web_view"
|
|
}
|
|
}
|
|
}
|
|
|
|
@GUI::Statusbar {
|
|
name: "statusbar"
|
|
}
|
|
}
|