Qt: Fix bug with frame not resizing properly

This commit is contained in:
Jeffrey Pfau 2014-12-31 02:27:29 -08:00
parent 1926cd5d1e
commit c07204d343
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ void Window::loadConfig() {
}
if (opts->width && opts->height) {
m_screenWidget->setSizeHint(QSize(opts->width, opts->height));
resizeFrame(opts->width, opts->height);
}
m_inputController.setConfiguration(m_config);