LockScreen: replace ugly dots with better dots

This commit is contained in:
lysec
2025-10-07 14:00:36 +02:00
parent 4a481c4f8b
commit 703e9af392
+15 -5
View File
@@ -622,11 +622,21 @@ Loader {
}
}
NText {
text: passwordInput.text.length > 0 ? "•".repeat(passwordInput.text.length) : ""
color: passwordInput.text.length > 0 ? Color.mOnSurface : Color.mOnSurfaceVariant
pointSize: Style.fontSizeXL * scaling
opacity: passwordInput.text.length > 0 ? 1.0 : 0.6
Row {
spacing: 6 * scaling
visible: passwordInput.text.length > 0
anchors.verticalCenter: parent.verticalCenter
Repeater {
model: passwordInput.text.length
NIcon {
icon: "circle-filled"
pointSize: Style.fontSizeS * scaling
color: Color.mOnSurface
opacity: 1.0
}
}
}
Rectangle {