diff options
Diffstat (limited to 'modules/drawers/Panels.qml')
| -rw-r--r-- | modules/drawers/Panels.qml | 2 |
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; |