Hi
i have a class that inherits QGraphicsItem that reimplements the hoverLeaveEvent method. Every instance of this class could have several children (that also inherit from QGraphicsItem and reimplement hoverLeaveEvent), that are painted into the item area. Everytime the mouse moves over one of these children, the hoverLeaveEvent of the parent is called, while I don't want this to happen (or I need a way to ignore it). How can I do this?
P.S.
every item involved invokes the method setAcceptsHoverEvents(true)
Bookmarks