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!

link|improve this question

78% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.