1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-06 05:25:41 -05:00

fix ipc return types

This commit is contained in:
bbedward
2025-09-04 15:59:27 -04:00
parent 3c3cffd7b6
commit 54b63a1f5f
6 changed files with 21 additions and 21 deletions

View File

@@ -135,13 +135,13 @@ Item {
IpcHandler {
target: "lock"
function lock(): void {
function lock() {
console.log("Lock screen requested via IPC")
LockScreenService.resetState()
loader.activeAsync = true
}
function demo(): void {
function demo() {
console.log("Lock screen DEMO mode requested via IPC")
demoWindow.showDemo()
}