forked from M-Labs/artiq
1
0
Fork 0

waveform: fix in _AddChannelDialog

hde_waveform_waveform_model
Simon Renblad 2024-01-23 15:53:11 +08:00
parent 9c59690061
commit ad79ca3a19
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ class _AddChannelDialog(QtWidgets.QDialog):
key = self._model.index_to_key(select)
if key is not None:
width, ty = self._model[key].ref
channels.append((key, width, ty, []))
channels.append([key, width, ty, []])
self.accepted.emit(channels)
self.close()