Commit df911338 authored by Gavin Bisesi's avatar Gavin Bisesi
Browse files

Merge pull request #729 from poixen/hq_images_default

Set to download HQ images by default
parents 59f5554d 3c60ac61
......@@ -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)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment