show/raise install dialog

make sure install dialog doesn't show up behind other windows when
electrum is started
This commit is contained in:
Michael Wozniak 2014-05-26 12:59:05 -04:00
parent 680fbf1d3e
commit 9fcc8703e8
1 changed files with 4 additions and 0 deletions

View File

@ -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