From 76c407b4b9afec89709c201413c0b185a78b3b43 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 6 Sep 2016 22:50:12 +0800 Subject: [PATCH] dashboard: fix 'disable other scans' --- artiq/dashboard/experiments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/dashboard/experiments.py b/artiq/dashboard/experiments.py index 4529c1804..1eb33e835 100644 --- a/artiq/dashboard/experiments.py +++ b/artiq/dashboard/experiments.py @@ -192,7 +192,7 @@ class _ArgumentEditor(QtWidgets.QTreeWidget): for name, widgets in self._arg_to_widgets.items(): if (name != current_name and isinstance(widgets["entry"], ScanEntry)): - entry.disable() + widgets["entry"].disable() def save_state(self): expanded = []