I have a QGraphicsScene which I populate with QGraphicsItems. Next I have two QGraphicsViews, one acting as the main view and the other as an overview. Both QGraphicsViews scenes are set with the same scene. Now I want to have a special QGraphicsItem which is visible in the overview QGraphicsView but is not visible in the mainviews QGraphicsView.

How can I achieve this? Currently the item is added to the scene and I see it in both views. I can hide it but then it is hidden in both views.