From 58d2232c4a78b3f9e097fc97ec7bc07c56813b96 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Mon, 1 Jun 2026 19:21:15 +1000 Subject: [PATCH] fix: lock pfp incorrect height --- modules/lock/center/ProfilePic.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/lock/center/ProfilePic.qml b/modules/lock/center/ProfilePic.qml index e6b80ce1..dafd7ba8 100644 --- a/modules/lock/center/ProfilePic.qml +++ b/modules/lock/center/ProfilePic.qml @@ -17,8 +17,8 @@ Item { implicitWidth: Math.round(centerWidth * 0.7) implicitHeight: { - const bounds = shape.pathBounds(); - return bounds.height - bounds.y; + shape.height; // Force update when shape height changes + return shape.pathBounds().height; } MaterialShape {