From 28cf6d36c5fc11d5f5bcb542051b8494378a54d6 Mon Sep 17 00:00:00 2001 From: Edson Passos Date: Thu, 22 Jul 2021 19:13:09 -0300 Subject: Decreases the main window minimum height to 500px --- src/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 1a9aeab..a3f6776 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -25,7 +25,7 @@ MainWindow::MainWindow(QWidget *parent) setWindowTitle(QApplication::applicationName()); setWindowIcon(QIcon(":/icons/app/icon-256.png")); setMinimumWidth(800); - setMinimumHeight(600); + setMinimumHeight(500); restoreGeometry(settings.value("geometry").toByteArray()); restoreState(settings.value("windowState").toByteArray()); -- cgit v1.2.3