I have a custom implementation of qGraphicsScene and a custom qGraphicsItem that I click on, but the itemAt function never returns a value, even though I am fairly certain t
You are querying the scene in item coordinates instead of scene coordinates. Use:
... QGraphicsItem *mod = itemAt(event->scenePos()); ...