From 0a615c3fac11594d50815351d5844fb3ee39593c Mon Sep 17 00:00:00 2001 From: Sho Date: Sun, 2 Aug 2026 16:19:06 +0900 Subject: [PATCH] style(lockscreen): remove letters typed counter text indicator --- .../modules/lockscreen/LockscreenContent.qml | 24 ++----------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/quickshell/modules/lockscreen/LockscreenContent.qml b/quickshell/modules/lockscreen/LockscreenContent.qml index d0a8315..055bc60 100644 --- a/quickshell/modules/lockscreen/LockscreenContent.qml +++ b/quickshell/modules/lockscreen/LockscreenContent.qml @@ -362,29 +362,10 @@ Item { } } - // Dynamic Typing Status / Letter Counter & Feedback Message + // Dynamic Typing Status & Feedback Message RowLayout { Layout.fillWidth: true - - // Typing Letter Counter Badge (Shows EXACT count of letters typed) - Rectangle { - implicitWidth: counterText.implicitWidth + 16 - implicitHeight: 24 - radius: 12 - color: LockscreenService.typedCount > 0 ? Qt.rgba(Theme.accent.r, Theme.accent.g, Theme.accent.b, 0.2) : "transparent" - visible: LockscreenService.typedCount > 0 - - Behavior on color { ColorAnimation { duration: 150 } } - - Text { - id: counterText - anchors.centerIn: parent - text: `⌨️ ${LockscreenService.typedCount} ${LockscreenService.typedCount === 1 ? 'letter' : 'letters'} typed` - color: Theme.accent - font.pixelSize: 11 - font.weight: Font.Bold - } - } + visible: LockscreenService.authFailed Item { Layout.fillWidth: true } @@ -394,7 +375,6 @@ Item { color: Theme.red font.pixelSize: 12 font.weight: Font.Bold - visible: LockscreenService.authFailed } } }