Using Qt 4.6 on Ubuntu 10.4
I have a QGraphicsView central widget in my MainWindow. Every time the program switches to a new level (Sokoban game), I want the MainWindow to adjust to the new size of the view. I mostly accomplished this by setting the maximum and minimum width/heights of both the mainwindow and view to the same thing, and this works most of the time, but on some smaller levels MainWindow only shrinks in one dimension, and leaves a white margin on one side like so:

It stays like that until I click in the view, at which point the MainWindow shrinks to the view. I can enter keystrokes before that to move my guy around and perform other commands and the margin will stay, it takes a mouse click to shrink it. I came up with a hackish fix by
move( geometry().x() + 1, geometry().y() ); // force mainWindow to update
move( geometry().x() - 1, geometry().y() ); // hackish but only thing that works
but this seems lame and most likely not portable, although I'm not sure this problem exists on other platforms. Any ideas?