aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorLibravatar Edson Passos <edsonpassosjr@outlook.com>2021-07-22 19:13:09 -0300
committerLibravatar GitHub <noreply@github.com>2021-07-22 19:13:09 -0300
commit28cf6d36c5fc11d5f5bcb542051b8494378a54d6 (patch)
treec76ddf9d1e53574fe54b6d52e519f9c417d103d9 /src/mainwindow.cpp
parent8f4c17eeb46e880fd2cd74e4e877a33ee2d6b44f (diff)
downloadwhatsie-28cf6d36c5fc11d5f5bcb542051b8494378a54d6.tar.gz
whatsie-28cf6d36c5fc11d5f5bcb542051b8494378a54d6.zip
Decreases the main window minimum height to 500px
Diffstat (limited to 'src/mainwindow.cpp')
-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());