mirror of
https://github.com/bec-project/bec_widgets.git
synced 2025-07-14 03:31:50 +02:00
fix(waveform): skip validation for curves that are not BECCurve instances
This commit is contained in:
@ -376,6 +376,8 @@ class BECWaveform(BECPlotBase):
|
||||
if len(self.curves) > 0:
|
||||
# validate all curves
|
||||
for curve in self.curves:
|
||||
if not isinstance(curve, BECCurve):
|
||||
continue
|
||||
self._validate_x_axis_behaviour(curve.config.signals.y.name, x_name, x_entry, False)
|
||||
self._switch_x_axis_item(
|
||||
f"{x_name}-{x_entry}"
|
||||
|
Reference in New Issue
Block a user