From 4b1316e8877ee2f251173a966ed3474a0fae287a Mon Sep 17 00:00:00 2001 From: zach Date: Mon, 18 May 2026 18:25:23 +0200 Subject: [PATCH] log exclusion zones sizing, debugging inconsistent border exclusions --- Drawers/Exclusions.qml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Drawers/Exclusions.qml b/Drawers/Exclusions.qml index 7c3603f..5cded67 100644 --- a/Drawers/Exclusions.qml +++ b/Drawers/Exclusions.qml @@ -12,22 +12,37 @@ Scope { required property ShellScreen screen ExclusionZone { + id: top + anchors.top: true exclusiveZone: root.bar.exclusiveZone } ExclusionZone { + id: left + anchors.left: true } ExclusionZone { + id: right + anchors.right: true } ExclusionZone { + id: bottom + anchors.bottom: true } + Timer { + interval: 5000 + running: true + + onTriggered: console.log("top height:", top.exclusiveZone, "left width:", left.exclusiveZone, "right width:", right.exclusiveZone, "bottom height:", bottom.exclusiveZone) + } + component ExclusionZone: CustomWindow { exclusiveZone: Config.barConfig.border implicitHeight: 1