Try to disable the throttling code, it decreases smoothness of animations.

svn path=/trunk/KDE/kdebase/workspace/; revision=724532
remotes/origin/Plasma/5.0
Luboš Luňák 19 years ago
parent 1f42aba1de
commit 0493a2f4b9
  1. 5
      composite.cpp

@ -268,8 +268,9 @@ void Workspace::performCompositing()
// repaints can seriously impact performance of everything else, therefore throttle
// them - leave at least 5msec time after one repaint is finished and next one
// is started.
if( lastCompositePaint.elapsed() < 5 )
return;
// Disabled now, it decreases smoothness of animations.
// if( lastCompositePaint.elapsed() < 5 )
// return;
checkCursorPos();
if( repaints_region.isEmpty() && !windowRepaintsPending()) // no damage
{

Loading…
Cancel
Save