On , Michael Sué <[email protected]> wrote: > Hi, > when I move a graphics item (rectangle polygon or ellipse) in my application > > by dragging it with the mouse the virtual function "QVariant > > itemChange(GraphicsItemChange change, const QVariant &value)" is no longer > > called with the parameters ItemPositionChange and ItemPositionHasChanged.
These notifications are no longer delivered by default. You need to enable the flag QGraphicsItem::ItemSendsGeometryChanges and you will get the old behaviour back. I reported the bug here http://bugreports.qt.nokia.com/browse/QTBUG-5497 I think Qt needs to highlight these changes in the release notes. Something like "Important behaviour changes in Qt that will break your applications in subtle ways, so check it out". Not exactly fun to think that defaults in behaviour like this can change between minor releases. Leo _______________________________________________ Qt4-preview-feedback mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qt4-preview-feedback
