diff options
author | Linus Groh <mail@linusgroh.de> | 2021-05-16 21:37:27 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-16 23:00:21 +0200 |
commit | d859bde3373824d87b13c389cec7fc4216301bd0 (patch) | |
tree | 531c307710ea5ffb7b86cf01db46b633c3102b10 /Userland/Games/GameOfLife/GameOfLife.gml | |
parent | e7dc0bdba345c786e50f16b28e29e2d5054fe7a2 (diff) | |
download | serenity-d859bde3373824d87b13c389cec7fc4216301bd0.zip |
GameOfLife: Move "ms" interval label to GML
There's no reason not to!
Diffstat (limited to 'Userland/Games/GameOfLife/GameOfLife.gml')
-rw-r--r-- | Userland/Games/GameOfLife/GameOfLife.gml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Userland/Games/GameOfLife/GameOfLife.gml b/Userland/Games/GameOfLife/GameOfLife.gml index 1942e60ba6..71fb0f4727 100644 --- a/Userland/Games/GameOfLife/GameOfLife.gml +++ b/Userland/Games/GameOfLife/GameOfLife.gml @@ -48,6 +48,11 @@ max: 5000 fixed_width: 60 } + + @GUI::Label { + text: " ms" + autosize: true + } } } |