mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +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.
55 lines
1.2 KiB
Plaintext
55 lines
1.2 KiB
Plaintext
@GUI::Widget {
|
|
name: "main"
|
|
fill_with_background_color: true
|
|
layout: @GUI::VerticalBoxLayout {
|
|
spacing: 2
|
|
}
|
|
|
|
@GUI::ToolbarContainer {
|
|
name: "toolbar_container"
|
|
|
|
@GUI::Toolbar {
|
|
name: "toolbar"
|
|
}
|
|
}
|
|
|
|
@GUI::HorizontalSplitter {
|
|
opportunistic_resizee: "First"
|
|
|
|
@HexEditor::HexEditor {
|
|
name: "editor"
|
|
}
|
|
|
|
@GUI::VerticalSplitter {
|
|
name: "side_panel_container"
|
|
visible: false
|
|
|
|
@GUI::Widget {
|
|
name: "search_results_container"
|
|
visible: false
|
|
layout: @GUI::VerticalBoxLayout {}
|
|
|
|
@GUI::TableView {
|
|
name: "search_results"
|
|
}
|
|
}
|
|
|
|
@GUI::Widget {
|
|
name: "value_inspector_container"
|
|
visible: false
|
|
layout: @GUI::VerticalBoxLayout {}
|
|
|
|
@GUI::TableView {
|
|
name: "value_inspector"
|
|
activates_on_selection: true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@GUI::Statusbar {
|
|
name: "statusbar"
|
|
segment_count: 5
|
|
}
|
|
}
|