fix frappy gui call
after change in MainWindow arguments
This commit is contained in:
@ -211,7 +211,8 @@ class FrappyManager(ServiceManager):
|
|||||||
from frappy.gui.mainwindow import MainWindow
|
from frappy.gui.mainwindow import MainWindow
|
||||||
|
|
||||||
app = QApplication([])
|
app = QApplication([])
|
||||||
win = MainWindow(nodes, logging.getLogger('gui'))
|
args = type('args', (), dict(detailed=True, node=nodes))
|
||||||
|
win = MainWindow(args, logging.getLogger('gui'))
|
||||||
win.show()
|
win.show()
|
||||||
return app.exec_()
|
return app.exec_()
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user