1
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2026-05-01 12:32:30 +02:00

feat : Add bec_signal_proxy to handle signals with option to unblock them manually.

This commit is contained in:
2024-10-01 17:00:10 +02:00
parent f554f3c167
commit 1dcfeb6cfc
6 changed files with 137 additions and 41 deletions
@@ -241,12 +241,6 @@ class BECArrowItem(BECIndicatorItem):
self.plot_item.removeItem(self.arrow_item)
self.item_on_plot = False
def check_log(self):
"""Checks if the x or y axis is in log scale and updates the internal state accordingly."""
self.is_log_x = self.plot_item.ctrl.logXCheck.isChecked()
self.is_log_y = self.plot_item.ctrl.logYCheck.isChecked()
self.set_position(self._pos)
def cleanup(self) -> None:
"""Cleanup the item"""
self.remove_from_plot()