forked from M-Labs/artiq
1
0
Fork 0

waveform: fix in _AddChannelDialog

This commit is contained in:
Simon Renblad 2024-01-23 15:53:11 +08:00
parent 529d5c9ba6
commit 9706a03ce5
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,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()