My problem is as follows...I have a QGraphicsItem that I would like to have in more then one scene. So I add the QGraphicsItem to scene1, then I add the same QGraphicsItem to scene2. The code would look something like this:
Qt Code:
  1. scene1->addItem(theQGraphicsItem);
  2. scene2->addItem(theQGraphicsItem);
To copy to clipboard, switch view to plain text mode 
The problem is that the QGraphicsItem will only show up in scene2. I know that addItem removes the graphicsItem from any previous scene before adding it to the new one, but is there any way to make it add it to both?

Thanks!