1
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2026-01-01 11:31:19 +01:00

fix(plot_base): axis setting filter for relevant properties

This commit is contained in:
2025-03-16 19:40:27 +01:00
parent 0753e359c6
commit 0336804fba

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)