Merge pull request #729 from poixen/hq_images_default

Set to download HQ images by default
This commit is contained in:
Gavin Bisesi 2015-02-11 22:17:07 -05:00
commit df911338df

View file

@ -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)