diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-11-11 10:56:46 -0500 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-11-11 10:56:46 -0500 |
commit | f71278d22e2b13b982e301c05c86245064017734 (patch) | |
tree | 2efd2a03ebc49b17204ab127443e10ad2f425053 /gr-qtgui/apps/gr_spectrogram_plot_c | |
parent | 8a8bfef084ed7a6ddc506f81690041d3b15a9540 (diff) |
qtgui: apps: with new use of the Title, the titles provided here just take up extra screen real estate.
Diffstat (limited to 'gr-qtgui/apps/gr_spectrogram_plot_c')
-rwxr-xr-x | gr-qtgui/apps/gr_spectrogram_plot_c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gr-qtgui/apps/gr_spectrogram_plot_c b/gr-qtgui/apps/gr_spectrogram_plot_c index 122f4ec5d6..52b0d4dff7 100755 --- a/gr-qtgui/apps/gr_spectrogram_plot_c +++ b/gr-qtgui/apps/gr_spectrogram_plot_c @@ -50,7 +50,7 @@ class spectrogram_plot_c(plot_base.plot_base): self.src_type = blocks.vector_source_c self.gui_snk = qtgui.waterfall_sink_c(self._psd_size, filter.firdes.WIN_BLACKMAN_hARRIS, self._center_freq, self._samp_rate, - "GNU Radio Spectrogram Plot", self._nsigs) + "", self._nsigs) self.setup() def main(): @@ -77,4 +77,3 @@ if __name__ == "__main__": main() except KeyboardInterrupt: pass - |