mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 22:45:45 +00:00
frontend: Set minimum window size to 640x360 instead of 1280x720 (#3413)
This commit is contained in:
parent
024c84d2db
commit
b73f678ee8
6 changed files with 36 additions and 8 deletions
|
@ -19,6 +19,7 @@
|
|||
#include <QTime>
|
||||
#include <QtConcurrent/QtConcurrentRun>
|
||||
#include "common/logging/log.h"
|
||||
#include "core/frontend/framebuffer_layout.h"
|
||||
#include "core/loader/loader.h"
|
||||
#include "ui_loading_screen.h"
|
||||
#include "video_core/rasterizer_interface.h"
|
||||
|
@ -61,7 +62,7 @@ LoadingScreen::LoadingScreen(QWidget* parent)
|
|||
: QWidget(parent), ui(std::make_unique<Ui::LoadingScreen>()),
|
||||
previous_stage(VideoCore::LoadCallbackStage::Complete) {
|
||||
ui->setupUi(this);
|
||||
setMinimumSize(1280, 720);
|
||||
setMinimumSize(Layout::MinimumSize::Width, Layout::MinimumSize::Height);
|
||||
|
||||
// Create a fade out effect to hide this loading screen widget.
|
||||
// When fading opacity, it will fade to the parent widgets background color, which is why we
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue