diff options
Diffstat (limited to 'modules/utilities/cards')
| -rw-r--r-- | modules/utilities/cards/Toggles.qml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/utilities/cards/Toggles.qml b/modules/utilities/cards/Toggles.qml index b74fa02..a5a3db3 100644 --- a/modules/utilities/cards/Toggles.qml +++ b/modules/utilities/cards/Toggles.qml @@ -72,6 +72,12 @@ StyledRect { }); } } + + Toggle { + icon: "gamepad" + checked: GameMode.enabled + onClicked: GameMode.enabled = !GameMode.enabled + } } } |