Hi,

I have my subclassed graphicsview and graphicsScene, all works perfectly with more or less 100 graphicsitems and some logic implemented in my custom scene.

I want to control when the items appear, so I tried to subclass QGraphicsScene::drawItems. But when QGraphicsView::drawItems is called it does not go to my subclassed scene, it calls QGraphicsScene::drawItems.

I can solve it writting my code directly in the view... but I would like to ask if it's the normal behavour or I'm missing something.

Thanks!