From 9f3ef267ac0006eeb92d126d1248a3251d62293c Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 22 Mar 2026 01:37:29 +1100 Subject: [PATCH] chore: fix formatting issues --- modules/lock/Lock.qml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/modules/lock/Lock.qml b/modules/lock/Lock.qml index 25d8a08c..283906cb 100644 --- a/modules/lock/Lock.qml +++ b/modules/lock/Lock.qml @@ -25,13 +25,17 @@ Scope { lock: lock } - CustomShortcut { // qmllint disable unresolved-type + // qmllint disable unresolved-type + CustomShortcut { + // qmllint enable unresolved-type name: "lock" description: "Lock the current session" onPressed: lock.locked = true } - CustomShortcut { // qmllint disable unresolved-type + // qmllint disable unresolved-type + CustomShortcut { + // qmllint enable unresolved-type name: "unlock" description: "Unlock the current session" onPressed: lock.unlock()