In the scene it gets the event, and with the qDebug() line I see on the console output

Qt Code:
  1. void myScene::dropEvent(QGraphicsSceneDragDropEvent * event)
  2. {
  3. qDebug() << "scene: dropEvent";
To copy to clipboard, switch view to plain text mode 

'scene: drop Event'

I have a similar debug in the item dropEvent() method.

Qt Code:
  1. void MyNode::dropEvent(QGraphicsSceneDragDropEvent * event)
  2. {
  3. qDebug() << "Node: dropEvent";
  4. QGraphicsItem::dropEvent(event);
  5. }
To copy to clipboard, switch view to plain text mode 

But I do not see the 'Node: dropEvent' debug, so the QGraphicsItem doesn't get the event.