diff options
author | Josh Blum | 2011-03-01 18:18:53 -0800 |
---|---|---|
committer | Josh Blum | 2011-03-01 18:18:53 -0800 |
commit | fedf4fbc9d217926ecbb1917d3c995516d88a8a9 (patch) | |
tree | 3e8595875a51b87337123795be8d248069cd3abb /grc/python | |
parent | fb5d1b80dc97bf940079b5a4b3b3f35002cc60aa (diff) | |
download | gnuradio-fedf4fbc9d217926ecbb1917d3c995516d88a8a9.tar.gz gnuradio-fedf4fbc9d217926ecbb1917d3c995516d88a8a9.tar.bz2 gnuradio-fedf4fbc9d217926ecbb1917d3c995516d88a8a9.zip |
qtgui-grc: enable start/stop control through qt widgets
Diffstat (limited to 'grc/python')
-rw-r--r-- | grc/python/flow_graph.tmpl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/grc/python/flow_graph.tmpl b/grc/python/flow_graph.tmpl index 8757b5204..854d83967 100644 --- a/grc/python/flow_graph.tmpl +++ b/grc/python/flow_graph.tmpl @@ -235,7 +235,9 @@ if __name__ == '__main__': #elif $generate_options == 'qt_gui' qapp = Qt.QApplication(sys.argv) tb = $(class_name)($(', '.join($params_eq_list))) + #if $flow_graph.get_option('run') tb.start() + #end if tb.show() qapp.exec_() #elif $generate_options == 'no_gui' |