diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-04-23 06:16:01 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-04-23 06:16:01 (GMT) |
commit | 66da5958bc3ec0df60e76bb32ead94bfe7b2eac7 (patch) | |
tree | 20ad65ee2f5396a0d16cf81462fd1d170795102c /examples | |
parent | 6c4a1d0664f74fc9fe0533ca245d75355695e5be (diff) | |
parent | b2ca05031381103e6916c63677e9eaff51c76055 (diff) | |
download | Qt-66da5958bc3ec0df60e76bb32ead94bfe7b2eac7.zip Qt-66da5958bc3ec0df60e76bb32ead94bfe7b2eac7.tar.gz Qt-66da5958bc3ec0df60e76bb32ead94bfe7b2eac7.tar.bz2 |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2:
Try to use multisampled opengl graphicssystem on all platforms
Make sure recreateEglSurface creates a surface if there isn't one
QX11GL: Implement QX11GLWindowSurface::grabWidget
QX11GL: Cleanup the window surface & remove some synchronisation
QX11GL: Move the shared context ownership into a seperate class
QX11GL: Don't do glFinish in endPaint
Implement QGLPaintDevice::metric()
Remove dead code left after a merge conflict resolution
Fixed autotest failures in tst_QPainterPath.
Removed bezier intersection code in path clipper.
Diagram scene example (graphicsview/diagramscene) refresh problem.
When using Qt::BypassGraphicsProxyWidget with QMenu the application is not stuck anymore
Diffstat (limited to 'examples')
-rw-r--r-- | examples/graphicsview/diagramscene/diagramitem.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/graphicsview/diagramscene/diagramitem.cpp b/examples/graphicsview/diagramscene/diagramitem.cpp index ee028bb..41534d1 100644 --- a/examples/graphicsview/diagramscene/diagramitem.cpp +++ b/examples/graphicsview/diagramscene/diagramitem.cpp @@ -82,6 +82,7 @@ DiagramItem::DiagramItem(DiagramType diagramType, QMenu *contextMenu, setPolygon(myPolygon); setFlag(QGraphicsItem::ItemIsMovable, true); setFlag(QGraphicsItem::ItemIsSelectable, true); + setFlag(QGraphicsItem::ItemSendsGeometryChanges, true); } //! [0] |