raise to 30msecs the document rendering queue polling interval

svn path=/trunk/playground/graphics/okular/; revision=558102
This commit is contained in:
Pino Toscano 2006-07-04 17:54:05 +00:00
parent 2cc4065c3b
commit f516679bf6

View file

@ -1376,7 +1376,8 @@ void KPDFDocument::sendGeneratorRequest()
generator->generatePixmap ( request );
}
else
QTimer::singleShot( 10, this, SLOT(sendGeneratorRequest()) );
// pino (7/4/2006): set the polling interval from 10 to 30
QTimer::singleShot( 30, this, SLOT(sendGeneratorRequest()) );
}
void KPDFDocument::cleanupPixmapMemory( int /*sure? bytesOffset*/ )