From 04a4ab9bffd8ee445889065e66104602cdc1bfc5 Mon Sep 17 00:00:00 2001 From: yyc12345 Date: Sat, 4 Jul 2026 16:54:48 +0800 Subject: [PATCH] feat: make the default window size bigger --- app/mainwindow.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/mainwindow.cpp b/app/mainwindow.cpp index ee1b3e8..9092f13 100644 --- a/app/mainwindow.cpp +++ b/app/mainwindow.cpp @@ -52,7 +52,11 @@ MainWindow::MainWindow(QWidget *parent) , m_fileSystemWatcher(new QFileSystemWatcher(this)) { this->setAttribute(Qt::WA_TranslucentBackground, true); - this->setMinimumSize(350, 330); + // YYC MARK: + // Blumis set original value is 350 x 330. + // It is too small for modern device, + // so I level it up to standard VGA resolution 640 x 480. + this->setMinimumSize(640, 480); this->setWindowIcon(QIcon(u":/icons/app-icon.svg"_s)); this->setMouseTracking(true); this->setAcceptDrops(true);