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