give the Oven window a fixed width

This commit is contained in:
Stephen Birarda 2017-04-07 14:19:23 -07:00
parent 8d3b854e69
commit e1840eb4fe

View file

@ -33,7 +33,12 @@ void Oven::setupGUI() {
_mainWindow->setWindowTitle("High Fidelity Oven");
// give the window a fixed width that will never change
const int FIXED_WINDOW_WIDTH = 640;
_mainWindow->setFixedWidth(FIXED_WINDOW_WIDTH);
_mainWindow->setCentralWidget(new ModelBakeWidget);
_mainWindow->show();
}