LockScreen: use iRadius (fix #1049)

This commit is contained in:
Ly-sec
2025-12-14 10:25:58 +01:00
parent bc23cff971
commit 76bcaa2a50
+3 -3
View File
@@ -901,7 +901,7 @@ Loader {
Rectangle {
Layout.fillWidth: true
Layout.preferredHeight: 48
radius: Style.radiusL
radius: Style.iRadiusL
color: Color.mSurface
border.color: passwordInput.activeFocus ? Color.mPrimary : Qt.alpha(Color.mOutline, 0.3)
border.width: passwordInput.activeFocus ? 2 : 1
@@ -1036,7 +1036,7 @@ Loader {
anchors.verticalCenter: parent.verticalCenter
width: 36
height: 36
radius: Math.min(Style.radiusL, width / 2)
radius: Math.min(Style.iRadiusL, width / 2)
color: eyeButtonArea.containsMouse ? Color.mPrimary : Color.transparent
visible: passwordInput.text.length > 0
enabled: !lockContext.unlockInProgress
@@ -1079,7 +1079,7 @@ Loader {
anchors.verticalCenter: parent.verticalCenter
width: 36
height: 36
radius: Math.min(Style.radiusL, width / 2)
radius: Math.min(Style.iRadiusL, width / 2)
color: submitButtonArea.containsMouse ? Color.mPrimary : Color.transparent
border.color: Color.mPrimary
border.width: Style.borderS