summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJames Rowe <jroweboy@gmail.com>2019-01-21 16:51:37 +0100
committerJames Rowe <jroweboy@gmail.com>2019-01-21 16:51:37 +0100
commit3740adb6f582963e50afba0a248163e3a37dd659 (patch)
treec9758dbb8ab1defdb538f5e0be2adbf4297e9481 /src
parentRemove blue box around loading screen (diff)
downloadyuzu-3740adb6f582963e50afba0a248163e3a37dd659.tar
yuzu-3740adb6f582963e50afba0a248163e3a37dd659.tar.gz
yuzu-3740adb6f582963e50afba0a248163e3a37dd659.tar.bz2
yuzu-3740adb6f582963e50afba0a248163e3a37dd659.tar.lz
yuzu-3740adb6f582963e50afba0a248163e3a37dd659.tar.xz
yuzu-3740adb6f582963e50afba0a248163e3a37dd659.tar.zst
yuzu-3740adb6f582963e50afba0a248163e3a37dd659.zip
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/loading_screen.cpp1
1 files changed, 1 insertions, 0 deletions
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);