On Thursday 09 December 2010, 20:33:47 Hugo Leveille wrote:
> I have a mainwindow that I would like to remove the resize handle 
> on the bottom right so that the window is not resizable.  

        self.statusBar().setSizeGripEnabled(False)

but that might not sufficient. Check out the widgets/windowflags.py 
example, if you find a flag combination with the desired effects. 
For a general solution, you might want to try 
        
        self.setFixedSize(self.sizeHint())

Pete
_______________________________________________
PyQt mailing list    [email protected]
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Reply via email to