Re: [PyQt] return value from QGraphicsItem::itemChange is not handled properly.

2013-09-02 Thread Phil Thompson
On Thu, 29 Aug 2013 14:58:07 +, Yann Le Hir wrote: > Hi, > > I'm having an issue with QGraphicsItem::itemChange. > > Here is the test program : > > import PyQt5.Qt as qt > > class Node( qt.QGraphicsRectItem ) : > def __init__( self , sector ) : > super( Node , self ).__ini

[PyQt] return value from QGraphicsItem::itemChange is not handled properly.

2013-08-29 Thread Yann Le Hir
Hi, I'm having an issue with QGraphicsItem::itemChange. Here is the test program : import PyQt5.Qt as qt class Node( qt.QGraphicsRectItem ) : def __init__( self , sector ) : super( Node , self ).__init__( sector ) def itemChange( self , change , v ) : res = super(