summaryrefslogtreecommitdiff
path: root/Userland/Games/Solitaire/Solitaire.gml
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2021-05-05 12:52:17 -0400
committerAndreas Kling <kling@serenityos.org>2021-05-05 21:38:45 +0200
commitb2576b7e457496d27d9a37ffe7cbd9e2c98abab9 (patch)
treeafcda2b69a93e0e7ecb15428cd6a5129bde49389 /Userland/Games/Solitaire/Solitaire.gml
parent59193dd6b3c5c065790f03a8e1154af2b45139ab (diff)
downloadserenity-b2576b7e457496d27d9a37ffe7cbd9e2c98abab9.zip
Solitaire: Add a GUI::Statusbar to the Solitaire window
This will display the score (instead of updating the window title) and any hovered action text.
Diffstat (limited to 'Userland/Games/Solitaire/Solitaire.gml')
-rw-r--r--Userland/Games/Solitaire/Solitaire.gml4
1 files changed, 4 insertions, 0 deletions
diff --git a/Userland/Games/Solitaire/Solitaire.gml b/Userland/Games/Solitaire/Solitaire.gml
index d72f90c547..bd9ace9971 100644
--- a/Userland/Games/Solitaire/Solitaire.gml
+++ b/Userland/Games/Solitaire/Solitaire.gml
@@ -9,4 +9,8 @@
fill_with_background_color: true
background_color: "green"
}
+
+ @GUI::Statusbar {
+ name: "statusbar"
+ }
}