From kde-commits Sun Sep 05 22:14:10 2004 From: Albert Astals Cid Date: Sun, 05 Sep 2004 22:14:10 +0000 To: kde-commits Subject: kdegraphics/kpdf/kpdf Message-Id: <20040905221410.86580E75 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=109442245626406 CVS commit by aacid: Increase thumbnail geneartion thread priority a bit, IdlePriority is so little priority some people were getting no thumbnail generated at all. M +1 -1 thumbnaillist.cpp 1.6 --- kdegraphics/kpdf/kpdf/thumbnaillist.cpp #1.5:1.6 @@ -69,5 +69,5 @@ void ThumbnailList::generateNextThumbnai } m_tg = new ThumbnailGenerator(m_doc, m_docMutex, m_nextThumbnail, QPaintDevice::x11AppDpiX(), this); - m_tg->start(QThread::IdlePriority); + m_tg->start(QThread::LowPriority); }