show/raise install dialog
authorMichael Wozniak <github@koh.ms>
Mon, 26 May 2014 16:59:05 +0000 (12:59 -0400)
committerMichael Wozniak <github@koh.ms>
Mon, 26 May 2014 16:59:05 +0000 (12:59 -0400)
make sure install dialog doesn't show up behind other windows when
electrum is started

gui/qt/installwizard.py

index 25cbad4..59d3927 100644 (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