From 9d70f0383f97f13be78e30d3e3eba14b6cfd8de2 Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Sun, 26 Jun 2022 22:10:31 -0600 Subject: [PATCH] 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 :^) --- .../BrowserSettings/BrowserSettingsWidget.gml | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Userland/Applications/BrowserSettings/BrowserSettingsWidget.gml b/Userland/Applications/BrowserSettings/BrowserSettingsWidget.gml index 97a76dc1cf7..e11dd8071e9 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 - } + 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" + } } } }