On Thu, Nov 27, 2008 at 6:05 AM, Oguz Yarimtepe <[EMAIL PROTECTED]> wrote: > rect=root.graphicsView.sceneRect() > root.graphicsView.setSceneRect(rect)
I believe this is your problem. These lines do .... nothing ! You are reading the graphics view rectangle and setting up the same. You should probably do something like: rect = pixmap.rect() # can't remember the exact function here root.graphicsView.setSceneRect(rect) -- Barbier de Reuille Pierre _______________________________________________ PyQt mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/pyqt
