mobile-widgets/qml: use showPin/oldStatus consistently

Remove aliases for showPin/oldStatus and reference prefs.showPin/oldStatus directly.

showPin/oldStatus are "temporary" variables, that are not saved in settings,
so they easily be replaced

Signed-off-by: Jan Iversen <jani@apache.org>
This commit is contained in:
jan Iversen 2019-12-18 11:29:37 +01:00 committed by Dirk Hohndel
parent ab28008679
commit a4d299e01e
3 changed files with 12 additions and 14 deletions

View file

@ -53,7 +53,7 @@ Item {
Controls.Label {
text: qsTr("Email")
visible: !rootItem.showPin
visible: !prefs.showPin
font.pointSize: subsurfaceTheme.smallPointSize
color: subsurfaceTheme.secondaryTextColor
}
@ -61,7 +61,7 @@ Item {
Controls.TextField {
id: login
text: prefs.cloudUserName
visible: !rootItem.showPin
visible: !prefs.showPin
Layout.fillWidth: true
inputMethodHints: Qt.ImhEmailCharactersOnly |
Qt.ImhNoAutoUppercase
@ -69,7 +69,7 @@ Item {
Controls.Label {
text: qsTr("Password")
visible: !rootItem.showPin
visible: !prefs.showPin
font.pointSize: subsurfaceTheme.smallPointSize
color: subsurfaceTheme.secondaryTextColor
}
@ -87,20 +87,20 @@ Item {
Controls.Label {
text: qsTr("PIN")
visible: rootItem.showPin
visible: prefs.showPin
}
Controls.TextField {
id: pin
text: ""
Layout.fillWidth: true
visible: rootItem.showPin
visible: prefs.showPin
}
RowLayout {
Layout.fillWidth: true
Layout.margins: Kirigami.Units.smallSpacing
spacing: Kirigami.Units.smallSpacing
visible: rootItem.showPin
visible: prefs.showPin
SsrfButton {
id: registerpin
text: qsTr("Register")
@ -126,7 +126,7 @@ Item {
Layout.fillWidth: true
Layout.margins: Kirigami.Units.smallSpacing
spacing: Kirigami.Units.smallSpacing
visible: !rootItem.showPin
visible: !prefs.showPin
SsrfButton {
id: signin_register_normal