diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2022-02-12 19:17:01 +0200 |
---|---|---|
committer | Idan Horowitz <idan.horowitz@gmail.com> | 2022-02-13 02:36:35 +0200 |
commit | c8ab45e79fd5845402c6aaf69890e103036e16ef (patch) | |
tree | 6a28508d9d953345d80eb6d4f99cc6f40628bc27 /Userland/Games/GameOfLife | |
parent | 4c451422c35b3c2044d3b005a7af32d18ce9b194 (diff) | |
download | serenity-c8ab45e79fd5845402c6aaf69890e103036e16ef.zip |
Userland: Run gml-format
This brings the existing GML files up to spec with the new requirements
Diffstat (limited to 'Userland/Games/GameOfLife')
-rw-r--r-- | Userland/Games/GameOfLife/GameOfLife.gml | 9 |
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 {} } } |