Backport 941021

Plasma::Svg:  Round the drawing size to the pixmap size, otherwise we can get bad arctefacts.

(noticable on the eyes applet)


svn path=/branches/KDE/4.2/kdelibs/; revision=941024
This commit is contained in:
Olivier Goffart 2009-03-18 18:07:57 +00:00
parent 5de018f830
commit b157fbba5c

View File

@ -454,7 +454,7 @@ void Svg::paint(QPainter *painter, int x, int y, const QString &elementID)
void Svg::paint(QPainter *painter, const QRectF &rect, const QString &elementID)
{
QPixmap pix(d->findInCache(elementID, rect.size()));
painter->drawPixmap(rect, pix, QRectF(QPointF(0, 0), pix.size()));
painter->drawPixmap(QRectF(rect.topLeft(), pix.size()), pix, QRectF(QPointF(0, 0), pix.size()));
}
void Svg::paint(QPainter *painter, int x, int y, int width, int height, const QString &elementID)