ladybird/Userland/Applications/Browser/BrowserWindow.gml
Andreas Kling a1eadc755d LibGUI: Allow tweaking each edge of TabWidget's content margins
Instead of having a single uniform margin around the child content of
a TabWidget, use a GUI::Margins to allow individual per-edge margins.
2021-06-15 14:28:39 +02:00

19 lines
382 B
Text

@GUI::Widget {
name: "browser"
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout
@GUI::HorizontalSeparator {
name: "top_line"
fixed_height: 2
visible: false
}
@GUI::TabWidget {
name: "tab_widget"
container_margins: [0, 0, 0, 0]
uniform_tabs: true
text_alignment: "CenterLeft"
}
}