style(lockscreen): remove lock emoji from input field and avatar fallback

This commit is contained in:
Sho 2026-08-02 16:18:05 +09:00
parent 996579c7c5
commit 7f41c5ebae

View File

@ -165,7 +165,7 @@ Item {
// Avatar Icon / Initial Badge // Avatar Icon / Initial Badge
Text { Text {
anchors.centerIn: parent anchors.centerIn: parent
text: LockscreenService.username ? LockscreenService.username.charAt(0).toUpperCase() : "🔒" text: LockscreenService.username ? LockscreenService.username.charAt(0).toUpperCase() : "U"
color: Theme.accent color: Theme.accent
font.pixelSize: 42 font.pixelSize: 42
font.weight: Font.Bold font.weight: Font.Bold
@ -230,13 +230,6 @@ Item {
Layout.fillWidth: true Layout.fillWidth: true
spacing: 12 spacing: 12
// Lock Icon
Text {
text: "🔒"
font.pixelSize: 18
Layout.alignment: Qt.AlignVCenter
}
// Password Visual Placeholder / Input Area // Password Visual Placeholder / Input Area
Rectangle { Rectangle {
Layout.fillWidth: true Layout.fillWidth: true