From de53b864182e31a14315e054ef0b55ffaf5e5507 Mon Sep 17 00:00:00 2001 From: Kushal Kolar Date: Tue, 17 Feb 2026 22:09:03 -0500 Subject: [PATCH] bugfix, should access feature class --- fastplotlib/graphics/selectors/_linear.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastplotlib/graphics/selectors/_linear.py b/fastplotlib/graphics/selectors/_linear.py index 0c956d57b..dec08a10f 100644 --- a/fastplotlib/graphics/selectors/_linear.py +++ b/fastplotlib/graphics/selectors/_linear.py @@ -48,7 +48,7 @@ def limits(self, values: tuple[float, float]): self._limits = tuple( map(round, values) ) # if values are close to zero things get weird so round them - self.selection._limits = self._limits + self._selection._limits = self._limits @property def edge_color(self) -> pygfx.Color: