From 08ad8b8c686b666a1beedbc552f1a9a90806a1e2 Mon Sep 17 00:00:00 2001 From: Taka Date: Sat, 26 Jan 2019 10:42:33 +0000 Subject: [PATCH] Adjusted the minimum size of the desktop app main window. --- vasl_templates/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vasl_templates/main_window.py b/vasl_templates/main_window.py index a18e77c..91547c0 100644 --- a/vasl_templates/main_window.py +++ b/vasl_templates/main_window.py @@ -86,7 +86,7 @@ class MainWindow( QWidget ): self.restoreGeometry( val ) else : self.resize( 1000, 600 ) - self.setMinimumSize( 800, 500 ) + self.setMinimumSize( 980, 520 ) # initialize the layout layout = QVBoxLayout( self )