fix(plot_base): axis setting filter for relevant properties

This commit is contained in:
2025-03-25 16:45:07 +01:00
parent 9df815a7c8
commit 35ebd19062
@@ -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)