Set MainWindow size on start

This commit is contained in:
Florian Bruhin 2014-01-31 10:11:59 +01:00
parent 9dafc67567
commit 7cde8f00cb

View File

@ -22,6 +22,8 @@ class MainWindow(QMainWindow):
super().__init__()
self.setWindowTitle('qutebrowser')
# FIXME maybe store window position/size on exit
self.resize(800, 600)
self.cwidget = QWidget(self)
self.setCentralWidget(self.cwidget)