summaryrefslogtreecommitdiff
path: root/modules/drawers/Drawers.qml
diff options
context:
space:
mode:
authorTim Hämisch <tim@thaemisch.net>2025-06-15 13:40:47 +0200
committerGitHub <noreply@github.com>2025-06-15 13:40:47 +0200
commit68874082b4cfee63feaecc0640646ad0ba753da7 (patch)
tree815a1113a4bd83373283253a35f0220a08a8cfe6 /modules/drawers/Drawers.qml
parentlauncher: use standard logout command (diff)
parentdashboard: fix uptime (diff)
downloadcaelestia-shell-68874082b4cfee63feaecc0640646ad0ba753da7.tar.gz
caelestia-shell-68874082b4cfee63feaecc0640646ad0ba753da7.tar.bz2
caelestia-shell-68874082b4cfee63feaecc0640646ad0ba753da7.zip
Merge branch 'main' into betteractions
Diffstat (limited to 'modules/drawers/Drawers.qml')
-rw-r--r--modules/drawers/Drawers.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/drawers/Drawers.qml b/modules/drawers/Drawers.qml
index 9930c6d..5cab75b 100644
--- a/modules/drawers/Drawers.qml
+++ b/modules/drawers/Drawers.qml
@@ -33,9 +33,9 @@ Variants {
mask: Region {
x: bar.implicitWidth
- y: BorderConfig.thickness
- width: win.width - bar.implicitWidth - BorderConfig.thickness
- height: win.height - BorderConfig.thickness * 2
+ y: Config.border.thickness
+ width: win.width - bar.implicitWidth - Config.border.thickness
+ height: win.height - Config.border.thickness * 2
intersection: Intersection.Xor
regions: regions.instances
@@ -55,7 +55,7 @@ Variants {
required property Item modelData
x: modelData.x + bar.implicitWidth
- y: modelData.y + BorderConfig.thickness
+ y: modelData.y + Config.border.thickness
width: modelData.width
height: modelData.height
intersection: Intersection.Subtract