diff options
author | Murillo Bernardes <mfbernardes@gmail.com> | 2018-06-16 11:05:12 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-06-16 04:01:49 -0700 |
commit | fed2a283b211fc7156678a118dd091fa2773ae76 (patch) | |
tree | 4049e0f019d6385f53760a37fcb77f1802e8ab88 /mobile-widgets/qml/CloudCredentials.qml | |
parent | 16d7620e210da62e644cdf6bee4039c4b7aef9a1 (diff) | |
download | subsurface-fed2a283b211fc7156678a118dd091fa2773ae76.tar.gz |
mobile: fix reference to credentialStatus property
Commit b8eb348f moved credentialStatus but missed one spot.
When starting from a fresh install, clicking "No cloud mode” fails because of this.
Signed-off-by: Murillo Bernardes <mfbernardes@gmail.com>
Diffstat (limited to 'mobile-widgets/qml/CloudCredentials.qml')
-rw-r--r-- | mobile-widgets/qml/CloudCredentials.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/CloudCredentials.qml b/mobile-widgets/qml/CloudCredentials.qml index b32323d05..2ddd5a3d1 100644 --- a/mobile-widgets/qml/CloudCredentials.qml +++ b/mobile-widgets/qml/CloudCredentials.qml @@ -146,7 +146,7 @@ Item { text: qsTr("No cloud mode") onClicked: { manager.syncToCloud = false - manager.credentialStatus = QMLPrefs.CS_NOCLOUD + prefs.credentialStatus = QMLPrefs.CS_NOCLOUD manager.saveCloudCredentials() manager.openNoCloudRepo() } |