Bugfixing

This commit is contained in:
Jakub Melka
2020-10-28 17:25:42 +01:00
parent 3c512d0e98
commit b6d29f0b03
4 changed files with 16 additions and 5 deletions

View File

@ -492,7 +492,7 @@ int PDFRasterizerPool::getDefaultRasterizerCount()
int PDFRasterizerPool::getCorrectedRasterizerCount(int rasterizerCount)
{
return qBound(1, rasterizerCount, 16);
return qBound(1, rasterizerCount, 256);
}
PDFImageWriterSettings::PDFImageWriterSettings()