summaryrefslogtreecommitdiff
path: root/gr-qtgui/apps/gr_spectrogram_plot_c
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-01-19 17:45:10 -0500
committerTom Rondeau <trondeau@vt.edu>2013-01-20 12:13:45 -0500
commit216bb6a8121234f155b7f2d82b4bdb2747c25514 (patch)
tree7ddb9398f7cff1d4f9a8dc820b4db94bfa796f9e /gr-qtgui/apps/gr_spectrogram_plot_c
parent202761f1a5808f207c44b328f7844ac788a06c29 (diff)
qtgui: added checkbox to time plotting apps to toggle stem plot on/off.
Diffstat (limited to 'gr-qtgui/apps/gr_spectrogram_plot_c')
-rwxr-xr-xgr-qtgui/apps/gr_spectrogram_plot_c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-qtgui/apps/gr_spectrogram_plot_c b/gr-qtgui/apps/gr_spectrogram_plot_c
index c8b904742b..6e75be73f4 100755
--- a/gr-qtgui/apps/gr_spectrogram_plot_c
+++ b/gr-qtgui/apps/gr_spectrogram_plot_c
@@ -64,7 +64,8 @@ def main():
options.start, options.nsamples, max_nsamples,
options.average);
- main_box = plot_base.dialog_box(tb, 'GNU Radio Spectrogram Plot', False)
+ extras = {'autoscale': False, 'stem': False}
+ main_box = plot_base.dialog_box(tb, 'GNU Radio Time Plot', extras)
main_box.show()
tb.run()