mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
mobile-widgets/qml: don't offer manual sync to cloud in no-cloud mode
Manual sync was enabled both for CS_VERIFIED (online) and CS_NOCLOUD (offline) and then in the trigger CS_NOCLOUD lead to a login screen, potentially confusing the user. Only enable manual sync with verified cloud credentials. Signed-off-by: Jan Iversen <jan@casacondor.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
bdbaf72d27
commit
a73ce80eee
1 changed files with 5 additions and 14 deletions
|
@ -321,21 +321,12 @@ Kirigami.ApplicationWindow {
|
|||
name: ":/icons/cloud_sync.svg"
|
||||
}
|
||||
text: qsTr("Manual sync with cloud")
|
||||
enabled: prefs.credentialStatus === CloudStatus.CS_VERIFIED ||
|
||||
prefs.credentialStatus === CloudStatus.CS_NOCLOUD
|
||||
enabled: PrefCloudStorage.cloud_verification_status === CloudStatus.CS_VERIFIED
|
||||
onTriggered: {
|
||||
if (prefs.credentialStatus === CloudStatus.CS_NOCLOUD) {
|
||||
returnTopPage()
|
||||
prefs.oldStatus = prefs.credentialStatus
|
||||
manager.startPageText = "Enter valid cloud storage credentials"
|
||||
prefs.credentialStatus = CloudStatus.CS_UNKNOWN
|
||||
globalDrawer.close()
|
||||
} else {
|
||||
globalDrawer.close()
|
||||
detailsWindow.endEditMode()
|
||||
manager.saveChangesCloud(true);
|
||||
globalDrawer.close()
|
||||
}
|
||||
globalDrawer.close()
|
||||
detailsWindow.endEditMode()
|
||||
manager.saveChangesCloud(true);
|
||||
globalDrawer.close()
|
||||
}
|
||||
}
|
||||
Kirigami.Action {
|
||||
|
|
Loading…
Reference in a new issue