diff options
Diffstat (limited to 'gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor')
-rwxr-xr-x | gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor b/gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor index b087ad5c71..56cb2f3696 100755 --- a/gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor +++ b/gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor @@ -644,7 +644,10 @@ class MForm(QtGui.QWidget): tableitems = knobs.keys() #UPDATE TABLE: - self.table.updateItems(knobs, self.knobprops) + try: + self.table.updateItems(knobs, self.knobprops) + except: + self.knobprops = self.radio.properties([]) #UPDATE PLOTS self.parent.update(knobs, self.uid) |