Wallpaper renderer has now QThread::LowPriority priority on every platform except Linux.

This might fix this bug on other platforms: https://bugs.kde.org/show_bug.cgi?id=213708

svn path=/trunk/KDE/kdelibs/; revision=1101239
This commit is contained in:
Davide Bettio 2010-03-09 17:51:51 +00:00
parent 5505c4a7b0
commit 4f4fca109f

View File

@ -35,6 +35,8 @@ WallpaperRenderThread::WallpaperRenderThread(QObject *parent)
{
m_abort = false;
m_restart = false;
setPriority(QThread::LowPriority);
}
WallpaperRenderThread::~WallpaperRenderThread()