From c67c0f7e9db6e474049aae5fdfa63b042b515388 Mon Sep 17 00:00:00 2001 From: Markus Zolliker Date: Tue, 18 Mar 2025 14:22:10 +0100 Subject: [PATCH] add 'status' to updates for module block --- secop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/secop.py b/secop.py index 58e58b2..00cf609 100644 --- a/secop.py +++ b/secop.py @@ -37,7 +37,7 @@ class SecopClient: if path == "main": components = [dict(type='rdlink', name=name+':value', title=name) for node in self.instrument.nodes for name in node.modules] - self.param_updates = {'value'} + self.param_updates = {'value', 'status'} return dict(type='draw', path='main', title='modules', components=components) self.module_updates.add(path) # TODO: remove others? node = self.instrument.node_map[path]