Quote Originally Posted by wysota View Post
I'd suggest using a debugger with a breakpoint on your path() implementation or on some of the hover events to see where the flow goes.
I'll look on it closer that week.

As a workaround I can suggest wrapping your text item into a rect item (with a parent-child relationship) and accepting hovers on the parent.
Since the hover handlers get called, I simply added
Qt Code:
  1. protected:
  2. void hoverEnterEvent(QGraphicsSceneHoverEvent *) {update();}
  3. void hoverLeaveEvent(QGraphicsSceneHoverEvent *) {update();}
To copy to clipboard, switch view to plain text mode 
Thanks