removes direct extern access, receives signal properly now, removed declaration unused method
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 14s
Python / lint-format (pull_request) Successful in 21s
Python / test (pull_request) Successful in 44s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m6s

This commit is contained in:
2026-06-03 16:27:31 +02:00
parent 0584cd618e
commit 2920c57163
5 changed files with 13 additions and 4 deletions
+8
View File
@@ -9,6 +9,7 @@ import qs.Components
Scope {
id: root
required property var lid
property alias lock: lock
property int seenOnce: 0
@@ -21,6 +22,13 @@ Scope {
onRequestLock: lock.locked = true
onUnlock: lock.locked = false
Connections {
target: root.lid
function onRequestLock(): void {
lock.locked = true
}
}
LockSurface {
id: lockSurface