Skip to content
Snippets Groups Projects

Fixes

Merged Oscar Gustafsson requested to merge fixes into master
2 files
+ 5
4
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -226,9 +226,10 @@ def start_simulation_dialog(
@@ -226,9 +226,10 @@ def start_simulation_dialog(
sfg_name : str, optional
sfg_name : str, optional
The name of the SFG.
The name of the SFG.
"""
"""
QApplication(sys.argv)
app = QApplication(sys.argv)
win = PlotWindow(sim_result=sim_results, sfg_name=sfg_name)
win = PlotWindow(sim_result=sim_results, sfg_name=sfg_name)
win.exec_()
win.show()
 
sys.exit(app.exec_())
# Simple test of the dialog
# Simple test of the dialog
Loading