From ee869779279332a8bdaba7fed27ca9aca69c8869 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Weber?= Date: Tue, 9 Dec 2025 12:26:04 +0100 Subject: [PATCH] call the direct method to load a grey scale array --- .../daq_move_plugins/daq_move_HoloeyeSplitScreen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pymodaq_plugins_holoeye/daq_move_plugins/daq_move_HoloeyeSplitScreen.py b/src/pymodaq_plugins_holoeye/daq_move_plugins/daq_move_HoloeyeSplitScreen.py index 0e8a6a8..80e7c90 100644 --- a/src/pymodaq_plugins_holoeye/daq_move_plugins/daq_move_HoloeyeSplitScreen.py +++ b/src/pymodaq_plugins_holoeye/daq_move_plugins/daq_move_HoloeyeSplitScreen.py @@ -65,7 +65,7 @@ def move_abs(self, value: DataActuator): split_index = int(self.shape[0] * screen_divider / 100) data_array[split_index:, :] = b_gray_value - super().move_abs(DataActuator(data=data_array)) + self.controller.showData(data_array) #directly call the method to apply the grey levels to the holoeye def commit_settings(self, param): super().commit_settings(param)