Locate and load all non cached covers in non GUI thread.

This commit is contained in:
craig.p.drummond
2014-03-18 19:49:28 +00:00
committed by craig.p.drummond
parent 5a1db47a15
commit e214122b7c
5 changed files with 14 additions and 55 deletions

View File

@@ -866,16 +866,10 @@ bool Settings::podcastAutoDownload()
return GET_BOOL("podcastAutoDownload", false);
}
int Settings::maxCoverFindPerIteration()
{
int v=GET_INT("maxCoverFindPerIteration", 5);
return RESTRICT(v, 0, 20);
}
int Settings::maxCoverUpdatePerIteration()
{
int v=GET_INT("maxCoverUpdatePerIteration", 5);
return RESTRICT(v, 1, 20);
int v=GET_INT("maxCoverUpdatePerIteration", 10);
return RESTRICT(v, 1, 50);
}
int Settings::coverCacheSize()