summaryrefslogtreecommitdiff
path: root/Userland/Games/GameOfLife/GameOfLife.gml
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Games/GameOfLife/GameOfLife.gml')
-rw-r--r--Userland/Games/GameOfLife/GameOfLife.gml9
1 files changed, 5 insertions, 4 deletions
diff --git a/Userland/Games/GameOfLife/GameOfLife.gml b/Userland/Games/GameOfLife/GameOfLife.gml
index fba7441b28..349ec3180e 100644
--- a/Userland/Games/GameOfLife/GameOfLife.gml
+++ b/Userland/Games/GameOfLife/GameOfLife.gml
@@ -1,9 +1,10 @@
@GUI::Widget {
- layout: @GUI::VerticalBoxLayout
+ layout: @GUI::VerticalBoxLayout {}
@GUI::ToolbarContainer {
@GUI::Toolbar {
name: "toolbar"
+
@GUI::Label {
text: "Columns: "
autosize: true
@@ -16,7 +17,7 @@
fixed_width: 40
}
- @GUI::VerticalSeparator
+ @GUI::VerticalSeparator {}
@GUI::Label {
text: "Rows: "
@@ -30,7 +31,7 @@
fixed_width: 40
}
- @GUI::VerticalSeparator
+ @GUI::VerticalSeparator {}
@GUI::Label {
text: "Update Speed: "
@@ -49,7 +50,7 @@
autosize: true
}
- @GUI::VerticalSeparator
+ @GUI::VerticalSeparator {}
}
}