1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:07:45 +00:00

Browser: Remove GML formatting errors from BrowserSettingsWidget.gml

Regressed in commit 6571455499

This is supposed to be caught by the GML format lint in Azure, but it
looks like a :ninjamerge: occured instead :^)
This commit is contained in:
Andrew Kaster 2022-06-26 22:10:31 -06:00 committed by Linus Groh
parent db4a5aafc8
commit 9d70f0383f

View file

@ -25,8 +25,7 @@
} }
@GUI::Widget { @GUI::Widget {
layout: @GUI::VerticalBoxLayout { layout: @GUI::VerticalBoxLayout {}
}
@GUI::Widget { @GUI::Widget {
layout: @GUI::HorizontalBoxLayout { layout: @GUI::HorizontalBoxLayout {
@ -44,21 +43,22 @@
placeholder: "https://example.com" placeholder: "https://example.com"
} }
} }
@GUI::Widget { @GUI::Widget {
layout: @GUI::HorizontalBoxLayout { layout: @GUI::HorizontalBoxLayout {
spacing: 16 spacing: 16
} }
@GUI::Label { @GUI::Label {
text: "New Tab:" text: "New Tab:"
text_alignment: "CenterLeft" text_alignment: "CenterLeft"
fixed_width: 45 fixed_width: 45
} }
@GUI::TextBox { @GUI::TextBox {
name: "new_tab_url_textbox" name: "new_tab_url_textbox"
placeholder: "https://example.com" placeholder: "https://example.com"
} }
} }
} }
} }