PyQt4: QGraphicsItem mousePressEvent() disables flag ItemIsMovable
问题 Here's a bug which I accidently solved it and have no idea why that works. I hope that someone could explain to me the logics behind it. I've reimplmented QGraphicsItem and its mousePressEvent. By doing that the item was no longer movable. Even when trying to call QGraphicsItem.mousePressEvent(self, event) it didn't work. Only when I reimplmented mouseMoveEvent() and mouseReleaseEvent() it finally worked. Code: class LWResizeableItem(QtGui.QGraphicsItem): def __init__(self): super