summaryrefslogtreecommitdiff
path: root/modules/drawers/Exclusions.qml
diff options
context:
space:
mode:
Diffstat (limited to 'modules/drawers/Exclusions.qml')
-rw-r--r--modules/drawers/Exclusions.qml16
1 files changed, 5 insertions, 11 deletions
diff --git a/modules/drawers/Exclusions.qml b/modules/drawers/Exclusions.qml
index e73a6a9..8ad23a2 100644
--- a/modules/drawers/Exclusions.qml
+++ b/modules/drawers/Exclusions.qml
@@ -10,30 +10,24 @@ Scope {
required property ShellScreen screen
ExclusionZone {
- anchors.left: false
+ anchors.left: true
}
ExclusionZone {
- anchors.top: false
+ anchors.top: true
}
ExclusionZone {
- anchors.right: false
+ anchors.right: true
}
ExclusionZone {
- anchors.bottom: false
+ anchors.bottom: true
}
component ExclusionZone: StyledWindow {
screen: root.screen
name: "border-exclusion"
- implicitWidth: BorderConfig.thickness
- implicitHeight: BorderConfig.thickness
-
- anchors.top: true
- anchors.left: true
- anchors.bottom: true
- anchors.right: true
+ exclusiveZone: BorderConfig.thickness
}
}