diff options
author | Linus Groh <mail@linusgroh.de> | 2021-05-16 21:40:11 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-16 23:00:21 +0200 |
commit | 7dea3d41cbcc28ddaa9386411cece856ee5e7e7f (patch) | |
tree | e10baf54f6fb5581483d17906448d138801ee49c | |
parent | 9151364e224d209299f0d1fd786f12bc21a51c34 (diff) | |
download | serenity-7dea3d41cbcc28ddaa9386411cece856ee5e7e7f.zip |
GameOfLife: Use a frame as the board widget container
This adds a bit of depth and looks very nice :^)
-rw-r--r-- | Userland/Games/GameOfLife/GameOfLife.gml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Games/GameOfLife/GameOfLife.gml b/Userland/Games/GameOfLife/GameOfLife.gml index e461b81f40..e1e0312d4b 100644 --- a/Userland/Games/GameOfLife/GameOfLife.gml +++ b/Userland/Games/GameOfLife/GameOfLife.gml @@ -59,7 +59,7 @@ } } - @GUI::Widget { + @GUI::Frame { name: "board_widget_container" fill_with_background_color: true } |