You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In over-riding class for QtGui.QGraphicsRectItem in PyQt, self.setAcceptsHoverEvents(True) could be called. By pyqt4topyqt5.py, QtGui.QGraphicsRectItem is converted into QtWidgets.QGraphicsRectItem and it's correct.
However, self.setAcceptsHoverEvents(True) should be converted into self.setAcceptHoverEvents(True) in the class but it does not.
The text was updated successfully, but these errors were encountered:
In over-riding class for
QtGui.QGraphicsRectItem
in PyQt,self.setAcceptsHoverEvents(True)
could be called. Bypyqt4topyqt5.py
,QtGui.QGraphicsRectItem
is converted intoQtWidgets.QGraphicsRectItem
and it's correct.However,
self.setAcceptsHoverEvents(True)
should be converted intoself.setAcceptHoverEvents(True)
in the class but it does not.The text was updated successfully, but these errors were encountered: