summaryrefslogtreecommitdiff
path: root/Userland/Applications
diff options
context:
space:
mode:
authorAndrew Kaster <akaster@serenityos.org>2022-06-26 22:10:31 -0600
committerLinus Groh <mail@linusgroh.de>2022-06-27 08:23:13 +0100
commit9d70f0383f97f13be78e30d3e3eba14b6cfd8de2 (patch)
tree2fec1f95fbaac6cd91f575d739a5721507872f8b /Userland/Applications
parentdb4a5aafc868a74c0c09eaaa199bcf39a8ac3559 (diff)
downloadserenity-9d70f0383f97f13be78e30d3e3eba14b6cfd8de2.zip
Browser: Remove GML formatting errors from BrowserSettingsWidget.gml
Regressed in commit 65714554997bacb6fdcc09da0b763defe252b435 This is supposed to be caught by the GML format lint in Azure, but it looks like a :ninjamerge: occured instead :^)
Diffstat (limited to 'Userland/Applications')
-rw-r--r--Userland/Applications/BrowserSettings/BrowserSettingsWidget.gml32
1 files changed, 16 insertions, 16 deletions
diff --git a/Userland/Applications/BrowserSettings/BrowserSettingsWidget.gml b/Userland/Applications/BrowserSettings/BrowserSettingsWidget.gml
index 97a76dc1cf..e11dd8071e 100644
--- a/Userland/Applications/BrowserSettings/BrowserSettingsWidget.gml
+++ b/Userland/Applications/BrowserSettings/BrowserSettingsWidget.gml
@@ -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
- }
-
- @GUI::Label {
- text: "New Tab:"
- text_alignment: "CenterLeft"
- fixed_width: 45
- }
-
- @GUI::TextBox {
- name: "new_tab_url_textbox"
- placeholder: "https://example.com"
- }
+ layout: @GUI::HorizontalBoxLayout {
+ spacing: 16
+ }
+
+ @GUI::Label {
+ text: "New Tab:"
+ text_alignment: "CenterLeft"
+ fixed_width: 45
+ }
+
+ @GUI::TextBox {
+ name: "new_tab_url_textbox"
+ placeholder: "https://example.com"
+ }
}
}
}