1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 18:55:07 +00:00
serenity/Userland/Applications/Browser/BrowserWindow.gml
Idan Horowitz c8ab45e79f Userland: Run gml-format
This brings the existing GML files up to spec with the new requirements
2022-02-13 02:36:35 +02:00

18 lines
375 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]
uniform_tabs: true
text_alignment: "CenterLeft"
}
}