From 6cbc74facad3bb6d9c9ec05694487b46bbff9e89 Mon Sep 17 00:00:00 2001 From: quadbyte Date: Tue, 12 Aug 2025 11:13:38 -0400 Subject: [PATCH] Fix settings not opening --- Modules/SidePanel/Cards/ProfileCard.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/SidePanel/Cards/ProfileCard.qml b/Modules/SidePanel/Cards/ProfileCard.qml index ee4b1c62..9d7f6382 100644 --- a/Modules/SidePanel/Cards/ProfileCard.qml +++ b/Modules/SidePanel/Cards/ProfileCard.qml @@ -61,7 +61,7 @@ NBox { icon: "settings" onClicked: function () { if (!root.settingsWindow) { - const comp = Qt.createComponent("../Settings/SettingsWindow.qml") + const comp = Qt.createComponent("../../Settings/SettingsWindow.qml") if (comp.status === Component.Ready) { root.settingsWindow = comp.createObject(root) } else {