From 46a91784d237137128965ad585e38085e931e5d4 Mon Sep 17 00:00:00 2001 From: wakonig_k Date: Sun, 13 Jul 2025 22:12:04 +0200 Subject: [PATCH] refactor(image_base): cleanup --- bec_widgets/widgets/plots/image/image_base.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/bec_widgets/widgets/plots/image/image_base.py b/bec_widgets/widgets/plots/image/image_base.py index 15980c2a..23d24bed 100644 --- a/bec_widgets/widgets/plots/image/image_base.py +++ b/bec_widgets/widgets/plots/image/image_base.py @@ -882,7 +882,6 @@ class ImageBase(PlotBase): enabled(bool): Whether to enable autorange. sync(bool): Whether to synchronize the autorange state across all layers. """ - print(f"Setting autorange to {enabled}") for layer in self.layer_manager: if not layer.sync.autorange: continue @@ -914,7 +913,6 @@ class ImageBase(PlotBase): Args: mode(str): The autorange mode. Options are "max" or "mean". """ - print(f"Setting autorange mode to {mode}") # for qt Designer if mode not in ["max", "mean"]: return @@ -936,7 +934,6 @@ class ImageBase(PlotBase): """ if not self.layer_manager: return - print(f"Toggling autorange to {enabled} with mode {mode}") for layer in self.layer_manager: if layer.sync.autorange: layer.image.autorange = enabled