From 3934dcdd07716b5b04e0c0a8097c9f681f5f6cd2 Mon Sep 17 00:00:00 2001 From: Ivan Usov Date: Tue, 9 Nov 2021 17:01:52 +0100 Subject: [PATCH] Update overview plot on parameter change For #45 --- pyzebra/app/panel_param_study.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyzebra/app/panel_param_study.py b/pyzebra/app/panel_param_study.py index 5eac58b..a94caac 100644 --- a/pyzebra/app/panel_param_study.py +++ b/pyzebra/app/panel_param_study.py @@ -527,6 +527,7 @@ def create(): # also `old` and `new` are the same for non-scalars for scan, export in zip(det_data, new["export"]): scan["export"] = export + _update_overview() _update_preview() scan_table_source = ColumnDataSource(dict(file=[], scan=[], param=[], fit=[], export=[]))