From aaf96b43cd02bfb878e04011ffb1dafe418fcd33 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Wed, 31 Dec 2014 02:27:29 -0800 Subject: [PATCH] Qt: Fix bug with frame not resizing properly --- src/platform/qt/Window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/qt/Window.cpp b/src/platform/qt/Window.cpp index e119d8c9d..481db3d3e 100644 --- a/src/platform/qt/Window.cpp +++ b/src/platform/qt/Window.cpp @@ -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();