diff options
| author | Tim Hämisch <tim@thaemisch.net> | 2025-06-15 13:40:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-15 13:40:47 +0200 |
| commit | 68874082b4cfee63feaecc0640646ad0ba753da7 (patch) | |
| tree | 815a1113a4bd83373283253a35f0220a08a8cfe6 /modules/drawers/Drawers.qml | |
| parent | launcher: use standard logout command (diff) | |
| parent | dashboard: fix uptime (diff) | |
| download | caelestia-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.qml | 8 |
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 |