Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion recOrder/plugin/main_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -1340,7 +1340,7 @@ def enter_calib_mode(self):
memory = set()
for i in range(cfg.size()):
prop = cfg.getSetting(i)
if "TS_DAC" in prop.getDeviceLabel():
if "TS" in prop.getDeviceLabel() and "DAC" in prop.getDeviceLabel():
dac = prop.getDeviceLabel()[-2:]
if dac not in memory:
self.ui.cb_lca.addItem("DAC" + dac)
Expand Down