From e4b5718833eb891f1a7a6b74f997bbfe365303ba Mon Sep 17 00:00:00 2001 From: wooze-pao Date: Tue, 25 Nov 2025 23:08:31 -0600 Subject: [PATCH] Fix: finger print keep running when use password login --- dots/.config/quickshell/ii/modules/ii/lock/LockContext.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/quickshell/ii/modules/ii/lock/LockContext.qml b/dots/.config/quickshell/ii/modules/ii/lock/LockContext.qml index b242cdc05..753044afa 100644 --- a/dots/.config/quickshell/ii/modules/ii/lock/LockContext.qml +++ b/dots/.config/quickshell/ii/modules/ii/lock/LockContext.qml @@ -70,7 +70,7 @@ Scope { } function stopFingerPam() { - if (fingerPam.running) { + if (fingerPam.active) { fingerPam.abort(); } }