aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLibravatar Keshav Bhatt <keshavbhatt@users.noreply.github.com>2021-07-23 06:07:02 +0530
committerLibravatar GitHub <noreply@github.com>2021-07-23 06:07:02 +0530
commitaa7e18cbf4204f3de0036ebf841f224786040637 (patch)
treec76ddf9d1e53574fe54b6d52e519f9c417d103d9 /src
parent8f4c17eeb46e880fd2cd74e4e877a33ee2d6b44f (diff)
parent28cf6d36c5fc11d5f5bcb542051b8494378a54d6 (diff)
downloadwhatsie-aa7e18cbf4204f3de0036ebf841f224786040637.tar.gz
whatsie-aa7e18cbf4204f3de0036ebf841f224786040637.zip
Merge pull request #13 from RoinujNosde/patch-1
Decreases the main window minimum height to 500px
Diffstat (limited to 'src')
-rw-r--r--src/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
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());