From: Michael Wozniak Date: Mon, 26 May 2014 16:59:05 +0000 (-0400) Subject: show/raise install dialog X-Git-Url: https://git.novaco.in/?p=electrum-nvc.git;a=commitdiff_plain;h=9fcc8703e8505c0f9406d1a13e1f4970befc94b5 show/raise install dialog make sure install dialog doesn't show up behind other windows when electrum is started --- 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