From 3740adb6f582963e50afba0a248163e3a37dd659 Mon Sep 17 00:00:00 2001
From: James Rowe <jroweboy@gmail.com>
Date: Mon, 21 Jan 2019 08:51:37 -0700
Subject: [PATCH] Set Minimum Size to the same as renderwindow

---
 src/yuzu/loading_screen.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/yuzu/loading_screen.cpp b/src/yuzu/loading_screen.cpp
index ae4d4a249..63c547b49 100644
--- a/src/yuzu/loading_screen.cpp
+++ b/src/yuzu/loading_screen.cpp
@@ -69,6 +69,7 @@ LoadingScreen::LoadingScreen(QWidget* parent)
     : QWidget(parent), ui(std::make_unique<Ui::LoadingScreen>()),
       previous_stage(VideoCore::LoadCallbackStage::Complete) {
     ui->setupUi(this);
+    setMinimumSize(1280, 720);
 
     connect(this, &LoadingScreen::LoadProgress, this, &LoadingScreen::OnLoadProgress,
             Qt::QueuedConnection);