tincrease wizard window size - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit bd3477cdb0367cb28353ca48d896af74bdfcd4e2 DIR parent ab53ee27f1958e68bdf13d454c31d6f894967eac HTML Author: ThomasV <thomasv@electrum.org> Date: Sun, 28 Aug 2016 09:43:22 +0200 increase wizard window size Diffstat: M gui/qt/installwizard.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- DIR diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py t@@ -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()