Hello,
I have made custom graphics widget with:

Qt Code:
  1. QRectF graphicsTask::boundingRect()
  2. {
  3. return QRectF(-50, -50, 100, 100);
  4. }
  5.  
  6. QPainterPath graphicsTask::shape()
  7. {
  8. path.addEllipse(boundingRect());
  9. return path;
  10. }
To copy to clipboard, switch view to plain text mode 

but it gets mouse events only on part of shape down and right of center of the item (bottom right quarter of a circle).
How can I make it work on all shape?