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:
parent
5de018f830
commit
b157fbba5c
2
svg.cpp
2
svg.cpp
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user