From bf0750db20fe96d1c2c35376f4868943bf7a0871 Mon Sep 17 00:00:00 2001 From: Matt Lowe Date: Tue, 10 Mar 2015 22:10:50 +0100 Subject: [PATCH] Set download hq images to false by default Due to mtgimage being taken down we I have made a one time check that will uncheck the hq image option. --- cockatrice/src/settingscache.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cockatrice/src/settingscache.cpp b/cockatrice/src/settingscache.cpp index 4dca8abe..6b5f7407 100644 --- a/cockatrice/src/settingscache.cpp +++ b/cockatrice/src/settingscache.cpp @@ -22,12 +22,12 @@ SettingsCache::SettingsCache() cardBackPicturePath = settings->value("paths/cardbackpicture").toString(); // we only want to reset the cache once, then its up to the user - bool updateCache = settings->value("update/pixmapCacheSize", false).toBool(); + bool updateCache = settings->value("revert/pixmapCacheSize", false).toBool(); if (!updateCache) { pixmapCacheSize = PIXMAPCACHE_SIZE_DEFAULT; settings->setValue("personal/pixmapCacheSize", pixmapCacheSize); - settings->setValue("personal/picturedownloadhq", true); - settings->setValue("update/pixmapCacheSize", true); + settings->setValue("personal/picturedownloadhq", false); + settings->setValue("revert/pixmapCacheSize", true); } else pixmapCacheSize = settings->value("personal/pixmapCacheSize", PIXMAPCACHE_SIZE_DEFAULT).toInt();