1
0

start wizard from main_window. fixes #1250

This commit is contained in:
ThomasV
2015-08-22 11:23:54 +02:00
parent 85c0dda1a9
commit aedfbd3855
3 changed files with 55 additions and 72 deletions

View File

@@ -65,9 +65,9 @@ class CosignWidget(QWidget):
class InstallWizard(QDialog):
def __init__(self, config, network, storage, app):
QDialog.__init__(self)
self.app = app
def __init__(self, config, network, storage, parent):
QDialog.__init__(self, parent)
self.app = parent.app
self.config = config
self.network = network
self.storage = storage