scale the clip rect by the proper scalefactor dimension...

svn path=/trunk/KDE/kdebase/workspace/; revision=1203283
icc-effect-5.14.5
Thomas Lübking 2010-12-03 14:01:05 +00:00
parent f70c052644
commit 1956f10280
1 changed files with 1 additions and 1 deletions

View File

@ -732,7 +732,7 @@ void SceneXrender::Window::performPaint( int mask, QRegion region, WindowPaintDa
{
QRect& r = rects[ i ];
r = QRect( int( r.x() * xscale ), int( r.y() * yscale ),
int( r.width() * xscale ), int( r.height() * xscale ));
int( r.width() * xscale ), int( r.height() * yscale ));
}
transformed_shape.setRects( rects.constData(), rects.count());
}