diff options
author | Tom Rondeau | 2012-10-12 15:26:57 -0400 |
---|---|---|
committer | Tom Rondeau | 2012-10-12 15:26:57 -0400 |
commit | 2267dee5f36f28004cf844a5e495194edb00a67b (patch) | |
tree | 0aff5407c41c0086cd8645c4bbb59637f87e03ab /gr-qtgui | |
parent | f4adf33585df6109bdb45ba969dcada0503e838f (diff) | |
parent | d2048cb7c850f35ecca85596515363361ccd8f12 (diff) | |
download | gnuradio-2267dee5f36f28004cf844a5e495194edb00a67b.tar.gz gnuradio-2267dee5f36f28004cf844a5e495194edb00a67b.tar.bz2 gnuradio-2267dee5f36f28004cf844a5e495194edb00a67b.zip |
Merge branch 'maint'
Diffstat (limited to 'gr-qtgui')
-rw-r--r-- | gr-qtgui/lib/qtgui_time_sink_c.cc | 1 | ||||
-rw-r--r-- | gr-qtgui/lib/qtgui_time_sink_f.cc | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/gr-qtgui/lib/qtgui_time_sink_c.cc b/gr-qtgui/lib/qtgui_time_sink_c.cc index 574fd93ad..773199462 100644 --- a/gr-qtgui/lib/qtgui_time_sink_c.cc +++ b/gr-qtgui/lib/qtgui_time_sink_c.cc @@ -83,6 +83,7 @@ qtgui_time_sink_c::initialize() } d_main_gui = new TimeDisplayForm(d_nconnections, d_parent); + d_main_gui->setFrequencyRange(0, 0, d_bandwidth); // initialize update time to 10 times a second set_update_time(0.1); diff --git a/gr-qtgui/lib/qtgui_time_sink_f.cc b/gr-qtgui/lib/qtgui_time_sink_f.cc index 09fdf0a92..1a23023b5 100644 --- a/gr-qtgui/lib/qtgui_time_sink_f.cc +++ b/gr-qtgui/lib/qtgui_time_sink_f.cc @@ -83,6 +83,7 @@ qtgui_time_sink_f::initialize() } d_main_gui = new TimeDisplayForm(d_nconnections, d_parent); + d_main_gui->setFrequencyRange(0, 0, d_bandwidth); // initialize update time to 10 times a second set_update_time(0.1); |