From 492369b3125b2c1c91f134c360110440b03d33b6 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Fri, 12 Jun 2015 11:48:56 -0700 Subject: Cloud storage: Add preference option whether to sync in the background This defaults to on as that's the most useful setting for the average user. Signed-off-by: Dirk Hohndel --- qt-ui/preferences.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'qt-ui/preferences.cpp') diff --git a/qt-ui/preferences.cpp b/qt-ui/preferences.cpp index c6e1e2bd5..426944da0 100644 --- a/qt-ui/preferences.cpp +++ b/qt-ui/preferences.cpp @@ -219,6 +219,7 @@ void PreferencesDialog::setUiFromPrefs() ui.save_password_local->setChecked(prefs.save_password_local); ui.cloud_storage_pin->setVisible(prefs.show_cloud_pin); ui.cloud_storage_pin_label->setVisible(prefs.show_cloud_pin); + ui.cloud_background_sync->setChecked(prefs.cloud_background_sync); } void PreferencesDialog::restorePrefs() @@ -404,6 +405,8 @@ void PreferencesDialog::syncSettings() prefs.cloud_storage_password = strdup(qPrintable(password)); } SAVE_OR_REMOVE("show_cloud_pin", default_prefs.show_cloud_pin, prefs.show_cloud_pin); + SAVE_OR_REMOVE("cloud_background_sync", default_prefs.cloud_background_sync, ui.cloud_background_sync->isChecked()); + s.endGroup(); loadSettings(); emit settingsChanged(); @@ -523,6 +526,7 @@ void PreferencesDialog::loadSettings() GET_TXT("password", cloud_storage_password); } GET_BOOL("show_cloud_pin", show_cloud_pin); + GET_BOOL("cloud_background_sync", cloud_background_sync); s.endGroup(); } -- cgit v1.2.3-70-g09d2