From eed6adb0e49451872a3f8542956d6cb731c61ccb Mon Sep 17 00:00:00 2001 From: Xavier Lhinares <60365026+XLhinares@users.noreply.github.com> Date: Sun, 15 Mar 2026 15:28:56 +0800 Subject: [PATCH] media: hide person icon if user pfp is ready (#1213) --- modules/dashboard/dash/User.qml | 1 + modules/lock/Center.qml | 1 + 2 files changed, 2 insertions(+) diff --git a/modules/dashboard/dash/User.qml b/modules/dashboard/dash/User.qml index b66b1f9a..5ede24bb 100644 --- a/modules/dashboard/dash/User.qml +++ b/modules/dashboard/dash/User.qml @@ -32,6 +32,7 @@ Row { fill: 1 grade: 200 font.pointSize: Math.floor(info.implicitHeight / 2) || 1 + visible: pfp.status !== Image.Ready } CachingImage { diff --git a/modules/lock/Center.qml b/modules/lock/Center.qml index 19cf9d29..aa926acd 100644 --- a/modules/lock/Center.qml +++ b/modules/lock/Center.qml @@ -97,6 +97,7 @@ ColumnLayout { text: "person" color: Colours.palette.m3onSurfaceVariant font.pointSize: Math.floor(root.centerWidth / 4) + visible: pfp.status !== Image.Ready } CachingImage {