Skip to content
Snippets Groups Projects
Commit e6152173 authored by Oscar Gustafsson's avatar Oscar Gustafsson :bicyclist:
Browse files

Fixes

parent d94e63cc
No related branches found
No related tags found
1 merge request!270Fixes
Pipeline #93677 passed
...@@ -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
......
...@@ -109,8 +109,8 @@ def wdf_allpass( ...@@ -109,8 +109,8 @@ def wdf_allpass(
latency_offsets=latency_offsets, latency_offsets=latency_offsets,
execution_time=execution_time, execution_time=execution_time,
) )
Signal(adaptor2.output(1), adaptor1.input(1)) Signal(adaptor2.output(0), adaptor1.input(1))
Signal(adaptor2.output(0), delay2) Signal(adaptor2.output(1), delay2)
signal_out = Signal(adaptor1.output(0)) signal_out = Signal(adaptor1.output(0))
output << signal_out output << signal_out
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment