diff options
| author | 2019-01-21 08:51:37 -0700 | |
|---|---|---|
| committer | 2019-01-21 08:51:37 -0700 | |
| commit | 3740adb6f582963e50afba0a248163e3a37dd659 (patch) | |
| tree | c9758dbb8ab1defdb538f5e0be2adbf4297e9481 /src | |
| parent | Remove blue box around loading screen (diff) | |
| download | yuzu-3740adb6f582963e50afba0a248163e3a37dd659.tar.gz yuzu-3740adb6f582963e50afba0a248163e3a37dd659.tar.xz yuzu-3740adb6f582963e50afba0a248163e3a37dd659.zip | |
Set Minimum Size to the same as renderwindow
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/loading_screen.cpp | 1 |
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) | |||
| 69 | : QWidget(parent), ui(std::make_unique<Ui::LoadingScreen>()), | 69 | : QWidget(parent), ui(std::make_unique<Ui::LoadingScreen>()), |
| 70 | previous_stage(VideoCore::LoadCallbackStage::Complete) { | 70 | previous_stage(VideoCore::LoadCallbackStage::Complete) { |
| 71 | ui->setupUi(this); | 71 | ui->setupUi(this); |
| 72 | setMinimumSize(1280, 720); | ||
| 72 | 73 | ||
| 73 | connect(this, &LoadingScreen::LoadProgress, this, &LoadingScreen::OnLoadProgress, | 74 | connect(this, &LoadingScreen::LoadProgress, this, &LoadingScreen::OnLoadProgress, |
| 74 | Qt::QueuedConnection); | 75 | Qt::QueuedConnection); |