Qt: Fix bug with frame not resizing properly

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

View File

@ -156,7 +156,7 @@ void Window::loadConfig() {
}
if (opts->width && opts->height) {
m_screenWidget->setSizeHint(QSize(opts->width, opts->height));
resizeFrame(opts->width, opts->height);
}
m_mruFiles = m_config->getMRU();