Skip to content
Snippets Groups Projects
Commit 50967518 authored by Lan Dam's avatar Lan Dam
Browse files

remove checking for ax_wf in WaveforWidget.plot_single_channel() because...

remove checking for ax_wf in WaveforWidget.plot_single_channel() because checking for key ax_wf in plotting_data1's channel and remove artist only necessary when replotting a channel
parent 03bdd92c
No related branches found
No related tags found
3 merge requests!149Fix bug happen when zooming in overlap section,!148fix zooming, order, y for the combination of 2 channels GPS_lk_Unlk and GPS_clock_power,!145Change to use matplotlib's lim for zooming
Pipeline #2788 passed with stage
in 2 minutes and 51 seconds
......@@ -51,19 +51,11 @@ class WaveformWidget(MultiThreadedPlottingWidget):
plot_type = chan_db_info['plotType']
# refer to doc string for mass_pos_data to know the reason for 'ax_wf'
if 'ax_wf' not in c_data:
ax = getattr(self.plotting, plot_functions[plot_type][1])(
c_data, chan_db_info, chan_id, None, None)
if ax is None:
return
c_data['ax_wf'] = ax
ax.chan = chan_id
self.axes.append(ax)
else:
for artist in c_data['ax_wf'].lines + c_data['ax_wf'].collections:
artist.remove()
getattr(self.plotting, plot_functions[plot_type][1])(
c_data, chan_db_info, chan_id, c_data['ax_wf'], None)
ax = getattr(self.plotting, plot_functions[plot_type][1])(
c_data, chan_db_info, chan_id, None, None)
c_data['ax_wf'] = ax
ax.chan = chan_id
self.axes.append(ax)
class WaveformDialog(QtWidgets.QWidget):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment