I am working with PyQt4 and my application includes a QGraphicsView with QGraphicsScene.
At the beginning, the QGraphicsView has no scroll bars, they appear when I zoom in. When I add an item, and move it outside of the visible area, I want scrollbars to appear so that I can scoll to the item. I tried:
def onSceneChanged(self):
self.scene().setSceneRect(self.scene().itemsBoundingRect())
This makes it possible to scoll to all item, but it also changes the viewport whenver called. I do not want to change the currently visible viewport.
Thanks!