From 9c721d36d88f1ed5d09b348ef4e0b859b57e03c1 Mon Sep 17 00:00:00 2001 From: Keshav Bhatt Date: Sat, 24 Jul 2021 17:26:39 +0530 Subject: updated the minimum size of window to prevent scrollbars. - 650px*520px --- src/mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mainwindow.cpp') diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index a3f6776..85df9ae 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -24,8 +24,8 @@ MainWindow::MainWindow(QWidget *parent) setWindowTitle(QApplication::applicationName()); setWindowIcon(QIcon(":/icons/app/icon-256.png")); - setMinimumWidth(800); - setMinimumHeight(500); + setMinimumWidth(650); + setMinimumHeight(520); restoreGeometry(settings.value("geometry").toByteArray()); restoreState(settings.value("windowState").toByteArray()); -- cgit v1.2.3