summaryrefslogtreecommitdiffstats
path: root/src/gui/graphicsview/qgraphicsitem_p.h
diff options
context:
space:
mode:
authorRhys Weatherley <rhys.weatherley@nokia.com>2009-10-22 05:12:40 (GMT)
committerRhys Weatherley <rhys.weatherley@nokia.com>2009-10-22 05:12:40 (GMT)
commit100afe8da00fdb1661b22e049960ed00a1d3c765 (patch)
tree7055b6806c9d1ff5a38edee4e9f7b70babe76a0a /src/gui/graphicsview/qgraphicsitem_p.h
parente7955a49b59a8c2568d1dcabaf6e72aca8a26bb0 (diff)
downloadQt-100afe8da00fdb1661b22e049960ed00a1d3c765.zip
Qt-100afe8da00fdb1661b22e049960ed00a1d3c765.tar.gz
Qt-100afe8da00fdb1661b22e049960ed00a1d3c765.tar.bz2
Fix a bug in QGraphicsRotation related to 2D projections
The projection to 2D needs to be done when the rotation is applied, not after all transformations have been applied. Reviewed-by: trustme
Diffstat (limited to 'src/gui/graphicsview/qgraphicsitem_p.h')
-rw-r--r--src/gui/graphicsview/qgraphicsitem_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/graphicsview/qgraphicsitem_p.h b/src/gui/graphicsview/qgraphicsitem_p.h
index 6550362..8696324 100644
--- a/src/gui/graphicsview/qgraphicsitem_p.h
+++ b/src/gui/graphicsview/qgraphicsitem_p.h
@@ -539,7 +539,7 @@ struct QGraphicsItemPrivate::TransformData
QMatrix4x4 m;
for (int i = 0; i < graphicsTransforms.size(); ++i)
graphicsTransforms.at(i)->applyTo(&m);
- x *= m.toTransform();
+ x *= m.toTransform(0);
}
x.translate(xOrigin, yOrigin);
x.rotate(rotation);