From 97784f6101ca87ac87fd1ec7841eacb9b5c6fa6f Mon Sep 17 00:00:00 2001 From: Zacharias-Brohn Date: Wed, 18 Feb 2026 12:15:10 +0100 Subject: [PATCH] oopsie conditional fixed --- Drawers/Panels.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Drawers/Panels.qml b/Drawers/Panels.qml index 457548e..4282c84 100644 --- a/Drawers/Panels.qml +++ b/Drawers/Panels.qml @@ -29,7 +29,7 @@ Item { anchors.fill: parent // anchors.margins: 8 - anchors.topMargin: visibilities.bar ? bar.implicitHeight : 0 + anchors.topMargin: Config.barConfig.autoHide && !visibilities.bar ? 0 : bar.implicitHeight Behavior on anchors.topMargin { Modules.Anim {} }