From 8af45342863f096aee1359b1702c774035466c58 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Tue, 5 Apr 2016 21:36:15 -0700 Subject: [PATCH] QML UI: don't try to save again if we are already saving Signed-off-by: Dirk Hohndel --- mobile-widgets/qmlmanager.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp index bf9459b0f..0fc3c65a7 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -721,6 +721,10 @@ void QMLManager::saveChanges() appendTextToLog("Don't save dives without loading from the cloud, first."); return; } + if (alreadySaving) { + appendTextToLog("Save operation already in progress."); + return; + } appendTextToLog("Saving dives."); git_storage_update_progress(0, "saveChanges"); // reset the timers QString fileName; @@ -732,15 +736,18 @@ void QMLManager::saveChanges() setAccessingCloud(0); qApp->processEvents(); // make sure that the notification is actually shown } + alreadySaving = true; if (save_dives(fileName.toUtf8().data())) { appendTextToLog(get_error_string()); setAccessingCloud(-1); + alreadySaving = false; return; } setAccessingCloud(-1); appendTextToLog("Updated dive list saved."); set_filename(fileName.toUtf8().data(), true); mark_divelist_changed(false); + alreadySaving = false; } void QMLManager::undoDelete(int id)