summaryrefslogtreecommitdiff
path: root/modules/drawers/Panels.qml
diff options
context:
space:
mode:
authoroutfoxxed <outfoxxed@outfoxxed.me>2025-06-06 23:26:17 -0700
committeroutfoxxed <outfoxxed@outfoxxed.me>2025-06-06 23:26:17 -0700
commitfc4eff7271e27fac29438cbad8cb865cec7b55a6 (patch)
treeebbd42d1ba820a42063c49ecf598666d5833bb15 /modules/drawers/Panels.qml
parentpopouts: fix anim when not shown (diff)
downloadcaelestia-shell-fc4eff7271e27fac29438cbad8cb865cec7b55a6.tar.gz
caelestia-shell-fc4eff7271e27fac29438cbad8cb865cec7b55a6.tar.bz2
caelestia-shell-fc4eff7271e27fac29438cbad8cb865cec7b55a6.zip
popouts: fix multimonitor
Diffstat (limited to 'modules/drawers/Panels.qml')
-rw-r--r--modules/drawers/Panels.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/drawers/Panels.qml b/modules/drawers/Panels.qml
index 0514b3e..6c6d892 100644
--- a/modules/drawers/Panels.qml
+++ b/modules/drawers/Panels.qml
@@ -83,7 +83,7 @@ Item {
anchors.left: parent.left
anchors.verticalCenter: parent.top
anchors.verticalCenterOffset: {
- const off = Popouts.currentCenter - BorderConfig.thickness;
+ const off = root.popouts.currentCenter - BorderConfig.thickness;
const diff = root.height - Math.floor(off + implicitHeight / 2);
if (diff < 0)
return off + diff;