From 97dcc5ac768cc4f0122382591238fd5a9d035270 Mon Sep 17 00:00:00 2001 From: wyzula-jan <133381102+wyzula-jan@users.noreply.github.com> Date: Tue, 9 Jan 2024 12:51:22 +0100 Subject: [PATCH] fix: monitor.py crosshair enabled by default --- bec_widgets/widgets/monitor/monitor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bec_widgets/widgets/monitor/monitor.py b/bec_widgets/widgets/monitor/monitor.py index d59e65a0..ce99f2f7 100644 --- a/bec_widgets/widgets/monitor/monitor.py +++ b/bec_widgets/widgets/monitor/monitor.py @@ -514,8 +514,8 @@ class BECMonitor(pg.GraphicsLayoutWidget): # Render static plot elements self.update_plot() # # Hook Crosshair #TODO enable later, currently not working - # if self.enable_crosshair is True: - # self.hook_crosshair() + if self.enable_crosshair is True: + self.hook_crosshair() def create_curve(self, curve_name: str, color: str) -> pg.PlotDataItem: """