From 175379dfdba0c51675ac1cbdd12f3f1b893d9177 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 30 Oct 2025 09:03:11 +0100 Subject: [PATCH] locksurface: adjust fingerprint icon size/spacing --- .../ii/modules/lock/LockSurface.qml | 23 ++++++++----------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/lock/LockSurface.qml b/dots/.config/quickshell/ii/modules/lock/LockSurface.qml index 1f7c47c75..8a3a73f60 100644 --- a/dots/.config/quickshell/ii/modules/lock/LockSurface.qml +++ b/dots/.config/quickshell/ii/modules/lock/LockSurface.qml @@ -101,22 +101,17 @@ MouseArea { // Fingerprint Loader { Layout.leftMargin: 10 + Layout.rightMargin: 6 Layout.alignment: Qt.AlignVCenter - active: root.context.fingerprintsConfigured // Bind to actual fingerprint availability - visible: root.context.fingerprintsConfigured + active: root.context.fingerprintsConfigured + visible: active - sourceComponent: Row { - spacing: 8 - - MaterialSymbol { - id: fingerprintIcon - anchors.verticalCenter: parent.verticalCenter - fill: 1 - text: "fingerprint" - iconSize: Appearance.font.pixelSize.huge - color: Appearance.colors.colOnSurfaceVariant - animateChange: true - } + sourceComponent: MaterialSymbol { + id: fingerprintIcon + fill: 1 + text: "fingerprint" + iconSize: Appearance.font.pixelSize.hugeass + color: Appearance.colors.colOnSurfaceVariant } }