From bd3477cdb0367cb28353ca48d896af74bdfcd4e2 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 28 Aug 2016 09:43:22 +0200 Subject: [PATCH] increase wizard window size --- gui/qt/installwizard.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index 5a4b3096..54541520 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -112,8 +112,8 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard): # Set for base base class self.plugins = plugins self.language_for_seed = config.get('language') - self.setMinimumSize(530, 370) - self.setMaximumSize(530, 370) + self.setMinimumSize(600, 400) + self.setMaximumSize(600, 400) self.connect(self, QtCore.SIGNAL('accept'), self.accept) self.title = QLabel() self.main_widget = QWidget()