qs: temp fix super key always thought to be held down

This commit is contained in:
end-4
2026-05-12 11:13:26 +02:00
parent 20dde15900
commit 1e442f1af0
+10 -10
View File
@@ -38,15 +38,15 @@ Singleton {
} }
} }
GlobalShortcut { // GlobalShortcut {
name: "workspaceNumber" // name: "workspaceNumber"
description: "Hold to show workspace numbers, release to show icons" // description: "Hold to show workspace numbers, release to show icons"
onPressed: { // onPressed: {
root.superDown = true // root.superDown = true
} // }
onReleased: { // onReleased: {
root.superDown = false // root.superDown = false
} // }
} // }
} }