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
Notes: sideshowbarker 2024-07-17 09:56:56 +09:00

View File

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