From 9fcc8703e8505c0f9406d1a13e1f4970befc94b5 Mon Sep 17 00:00:00 2001 From: Michael Wozniak Date: Mon, 26 May 2014 12:59:05 -0400 Subject: [PATCH] show/raise install dialog make sure install dialog doesn't show up behind other windows when electrum is started --- gui/qt/installwizard.py | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index 25cbad4..59d3927 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -135,6 +135,10 @@ class InstallWizard(QDialog): vbox.addLayout(ok_cancel_buttons(self, _('Next'))) self.set_layout(vbox) + + self.show() + self.raise_() + if not self.exec_(): return None, None -- 1.7.1