From c13acd01523ee131061d561b44e88549c04df092 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 9 May 2025 01:07:47 +0200 Subject: [PATCH] wrap {} with () --- .config/quickshell/services/HyprlandData.qml | 2 +- .config/quickshell/services/KeyringStorage.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/quickshell/services/HyprlandData.qml b/.config/quickshell/services/HyprlandData.qml index 5ca4cf6fa..598177ae5 100644 --- a/.config/quickshell/services/HyprlandData.qml +++ b/.config/quickshell/services/HyprlandData.qml @@ -11,7 +11,7 @@ Singleton { id: root property var windowList: [] property var addresses: [] - property var windowByAddress: {} + property var windowByAddress: ({}) property var monitors: [] function updateWindowList() { diff --git a/.config/quickshell/services/KeyringStorage.qml b/.config/quickshell/services/KeyringStorage.qml index ef51c3ac7..78254ed90 100644 --- a/.config/quickshell/services/KeyringStorage.qml +++ b/.config/quickshell/services/KeyringStorage.qml @@ -10,7 +10,7 @@ import QtQuick; Singleton { id: root - property var keyringData: {} + property var keyringData: ({}) // onKeyringDataChanged: { // console.log("[KeyringStorage] Keyring data changed:", JSON.stringify(root.keyringData)); // }