From 419214f4bd6313b3b17c52664141405095c6a450 Mon Sep 17 00:00:00 2001 From: Zacharias-Brohn Date: Wed, 25 Feb 2026 14:35:23 +0100 Subject: [PATCH] oops lol --- Drawers/Backgrounds.qml | 20 +++++++++++--------- Drawers/Panels.qml | 23 ++++++++++++----------- 2 files changed, 23 insertions(+), 20 deletions(-) diff --git a/Drawers/Backgrounds.qml b/Drawers/Backgrounds.qml index 00035c5..0abb605 100644 --- a/Drawers/Backgrounds.qml +++ b/Drawers/Backgrounds.qml @@ -8,7 +8,8 @@ import qs.Modules.Notifications.Sidebar.Utils as Utils import qs.Modules.Dashboard as Dashboard import qs.Modules.Osd as Osd import qs.Modules.Launcher as Launcher -import qs.Modules.Settings as Settings + +// import qs.Modules.Settings as Settings Shape { id: root @@ -22,7 +23,8 @@ Shape { anchors.topMargin: bar.implicitHeight preferredRendererType: Shape.CurveRenderer - Component.onCompleted: console.log(root.bar.implicitHeight, root.bar.anchors.topMargin) + Component.onCompleted: console.log(root.bar.implicitHeight, + root.bar.anchors.topMargin) Osd.Background { startX: root.width - root.panels.sidebar.width @@ -72,11 +74,11 @@ Shape { wrapper: root.panels.sidebar } - Settings.Background { - id: settings - - startX: (root.width - wrapper.width) / 2 - rounding - startY: 0 - wrapper: root.panels.settings - } + // Settings.Background { + // id: settings + // + // startX: (root.width - wrapper.width) / 2 - rounding + // startY: 0 + // wrapper: root.panels.settings + // } } diff --git a/Drawers/Panels.qml b/Drawers/Panels.qml index 4030e22..df0fba5 100644 --- a/Drawers/Panels.qml +++ b/Drawers/Panels.qml @@ -9,7 +9,7 @@ import qs.Modules.Dashboard as Dashboard import qs.Modules.Osd as Osd import qs.Components.Toast as Toasts import qs.Modules.Launcher as Launcher -import qs.Modules.Settings as Settings +// import qs.Modules.Settings as Settings import qs.Config Item { @@ -22,7 +22,7 @@ Item { readonly property alias osd: osd readonly property alias popouts: popouts required property ShellScreen screen - readonly property alias settings: settings + // readonly property alias settings: settings readonly property alias sidebar: sidebar readonly property alias toasts: toasts readonly property alias utilities: utilities @@ -30,7 +30,8 @@ Item { anchors.fill: parent // anchors.margins: 8 - anchors.topMargin: Config.barConfig.autoHide && !visibilities.bar ? 0 : bar.implicitHeight + anchors.topMargin: Config.barConfig.autoHide && !visibilities.bar ? 0 : + bar.implicitHeight Behavior on anchors.topMargin { Anim { @@ -117,12 +118,12 @@ Item { visibilities: root.visibilities } - Settings.Wrapper { - id: settings - - anchors.horizontalCenter: parent.horizontalCenter - anchors.top: parent.top - panels: root - visibilities: root.visibilities - } + // Settings.Wrapper { + // id: settings + // + // anchors.horizontalCenter: parent.horizontalCenter + // anchors.top: parent.top + // panels: root + // visibilities: root.visibilities + // } }