0
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-07-14 03:31:50 +02:00

fix(plot_base): axis setting filter for relevant properties

This commit is contained in:
2025-03-16 19:40:27 +01:00
parent 9df815a7c8
commit 35ebd19062

View File

@ -97,6 +97,8 @@ class AxisSettings(SettingWidget):
widget_to_set = self.ui.findChild(QWidget, property_name)
except RuntimeError:
return
if widget_to_set is None:
return
# Block signals to avoid triggering set_property again
was_blocked = widget_to_set.blockSignals(True)
WidgetIO.set_value(widget_to_set, value)