diff options
author | Martin Braun <martin@gnuradio.org> | 2021-03-16 16:25:47 +0100 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-03-16 20:37:36 -0400 |
commit | f6fe5280edf78e668f918f6b38f7d59eef7c0a9a (patch) | |
tree | 1d70f4f0a17404e7f82fe272be0147de0c307e6d | |
parent | a1a3d860ecb8ffef9f2baccc2721d2d39071ba1c (diff) |
uhd: Fix phase relations plot (Qt issue)
The phase-relations plot didn't specify a handle for the Qt parent,
which used to be OK (it would default to None) but no longer is.
Signed-off-by: Martin Braun <martin@gnuradio.org>
-rwxr-xr-x | gr-uhd/apps/uhd_fft | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-uhd/apps/uhd_fft b/gr-uhd/apps/uhd_fft index adb63c9209..12d1f8bd14 100755 --- a/gr-uhd/apps/uhd_fft +++ b/gr-uhd/apps/uhd_fft @@ -341,7 +341,8 @@ class uhd_fft(UHDApp, gr.top_block, Qt.QWidget): 1024, #size self.samp_rate, #samp_rate "", #name - len(self.channels) - 1 + len(self.channels) - 1, + None # parent ) self.qtgui_phase_plot.set_update_time(self.update_rate) self.qtgui_phase_plot.set_y_axis(-3.5, 3.5) |