diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-12-03 14:30:30 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-12-03 14:30:30 -0800 |
commit | a0b83dc2f16fa3042966aeedc85e7eacfc4a200c (patch) | |
tree | c532500c0eef4757a5d24dfee49986fcdafcbad7 /qt-mobile/qml | |
parent | 7a94360a6da6665ea42de29c39246a5ebc67dada (diff) | |
download | subsurface-a0b83dc2f16fa3042966aeedc85e7eacfc4a200c.tar.gz |
QML UI: different functions for saving Preferences and Cloud Credentials
Tapping Save on those two pages should only update the data that are actually
available on those pages.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qml')
-rw-r--r-- | qt-mobile/qml/CloudCredentials.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-mobile/qml/CloudCredentials.qml b/qt-mobile/qml/CloudCredentials.qml index 20bc82f66..bada5c04d 100644 --- a/qt-mobile/qml/CloudCredentials.qml +++ b/qt-mobile/qml/CloudCredentials.qml @@ -72,7 +72,7 @@ Item { manager.cloudUserName = login.text manager.cloudPassword = password.text manager.saveCloudPassword = savePassword.checked - manager.savePreferences() + manager.saveCloudCredentials() stackView.pop() } } |