From 3c60ac6114f6f49186123078408c279d9ca63682 Mon Sep 17 00:00:00 2001 From: Matt Lowe Date: Wed, 11 Feb 2015 21:38:34 +0100 Subject: [PATCH] Set to download HQ images by default --- cockatrice/src/settingscache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/settingscache.cpp b/cockatrice/src/settingscache.cpp index 624863a2..027c23e1 100644 --- a/cockatrice/src/settingscache.cpp +++ b/cockatrice/src/settingscache.cpp @@ -22,7 +22,7 @@ SettingsCache::SettingsCache() cardBackPicturePath = settings->value("paths/cardbackpicture").toString(); picDownload = settings->value("personal/picturedownload", true).toBool(); - picDownloadHq = settings->value("personal/picturedownloadhq", false).toBool(); + picDownloadHq = settings->value("personal/picturedownloadhq", true).toBool(); pixmapCacheSize = settings->value("personal/pixmapCacheSize", PIXMAPCACHE_SIZE_DEFAULT).toInt(); //sanity check if(pixmapCacheSize < PIXMAPCACHE_SIZE_MIN || pixmapCacheSize > PIXMAPCACHE_SIZE_MAX)