diff options
Diffstat (limited to 'mobile-widgets/qml/CloudCredentials.qml')
-rw-r--r-- | mobile-widgets/qml/CloudCredentials.qml | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/mobile-widgets/qml/CloudCredentials.qml b/mobile-widgets/qml/CloudCredentials.qml index 72a5ccb12..fd667c00c 100644 --- a/mobile-widgets/qml/CloudCredentials.qml +++ b/mobile-widgets/qml/CloudCredentials.qml @@ -96,7 +96,7 @@ Item { text: qsTr("Show password") Layout.preferredWidth: col1Width } - Switch { + SsrfSwitch { checked: false id: showPassword Layout.preferredWidth: col2Width @@ -105,27 +105,6 @@ Item { password.text = "" // don't show a hidden password password.echoMode = checked ? TextInput.Normal : TextInput.Password } - indicator: Rectangle { - implicitWidth: Kirigami.Units.largeSpacing * 3 - implicitHeight: Kirigami.Units.largeSpacing - x: showPassword.leftPadding - y: parent.height / 2 - height / 2 - radius: Kirigami.Units.largeSpacing * 0.5 - color: showPassword.checked ? - subsurfaceTheme.lightPrimaryColor : subsurfaceTheme.backgroundColor - border.color: subsurfaceTheme.darkerPrimaryColor - - Rectangle { - x: showPassword.checked ? parent.width - width : 0 - y: parent.height / 2 - height / 2 - width: Kirigami.Units.largeSpacing * 1.5 - height: Kirigami.Units.largeSpacing * 1.5 - radius: height / 2 - color: showPassword.down || showPassword.checked ? - subsurfaceTheme.primaryColor : subsurfaceTheme.lightPrimaryColor - border.color: subsurfaceTheme.darkerPrimaryColor - } - } } } |