This commit is contained in:
2026-04-21 10:48:42 +02:00
parent 73c5a74d0f
commit 1d9a7cfecf
4 changed files with 113 additions and 121 deletions
@@ -11,7 +11,11 @@ Singleton {
property bool isCapslockOn: false
onIsCapslockOnChanged: {
TempNotificationService.showWithIcon("letter-case", root.isCapslockOn ? "CAPS LOCK ON" : "caps lock off");
if (root.isCapslockOn) {
TempNotificationService.showWithIcon("letter-case-toggle", "CAPS LOCK ON");
} else {
TempNotificationService.showWithIcon("letter-case", "caps lock off");
}
}
Process {