summaryrefslogtreecommitdiff
path: root/Userland/Applications/Browser
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Applications/Browser')
-rw-r--r--Userland/Applications/Browser/BrowserWindow.gml2
-rw-r--r--Userland/Applications/Browser/EditBookmark.gml8
-rw-r--r--Userland/Applications/Browser/Tab.gml4
3 files changed, 7 insertions, 7 deletions
diff --git a/Userland/Applications/Browser/BrowserWindow.gml b/Userland/Applications/Browser/BrowserWindow.gml
index f02adc0630..d0e1a90672 100644
--- a/Userland/Applications/Browser/BrowserWindow.gml
+++ b/Userland/Applications/Browser/BrowserWindow.gml
@@ -1,7 +1,7 @@
@GUI::Widget {
name: "browser"
fill_with_background_color: true
- layout: @GUI::VerticalBoxLayout
+ layout: @GUI::VerticalBoxLayout {}
@GUI::HorizontalSeparator {
name: "top_line"
diff --git a/Userland/Applications/Browser/EditBookmark.gml b/Userland/Applications/Browser/EditBookmark.gml
index c6e41cc796..4daad3f12e 100644
--- a/Userland/Applications/Browser/EditBookmark.gml
+++ b/Userland/Applications/Browser/EditBookmark.gml
@@ -8,7 +8,7 @@
@GUI::Widget {
fixed_height: 24
- layout: @GUI::HorizontalBoxLayout
+ layout: @GUI::HorizontalBoxLayout {}
@GUI::Label {
text: "Title:"
@@ -23,7 +23,7 @@
@GUI::Widget {
fixed_height: 24
- layout: @GUI::HorizontalBoxLayout
+ layout: @GUI::HorizontalBoxLayout {}
@GUI::Label {
text: "URL:"
@@ -38,9 +38,9 @@
@GUI::Widget {
fixed_height: 24
- layout: @GUI::HorizontalBoxLayout
+ layout: @GUI::HorizontalBoxLayout {}
- @GUI::Widget
+ @GUI::Widget {}
@GUI::Button {
name: "ok_button"
diff --git a/Userland/Applications/Browser/Tab.gml b/Userland/Applications/Browser/Tab.gml
index d6c3ea135a..8371af44df 100644
--- a/Userland/Applications/Browser/Tab.gml
+++ b/Userland/Applications/Browser/Tab.gml
@@ -5,6 +5,7 @@
@GUI::ToolbarContainer {
name: "toolbar_container"
+
@GUI::Toolbar {
name: "toolbar"
}
@@ -12,8 +13,7 @@
@GUI::Widget {
name: "webview_container"
- layout: @GUI::VerticalBoxLayout
-
+ layout: @GUI::VerticalBoxLayout {}
}
@GUI::Statusbar {