From edbd8723ccd6d33be25116f2ee611ba42c5d3776 Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Tue, 2 Sep 2025 11:18:43 +0200 Subject: [PATCH] Fix typo in Visible graphics feature --- fastplotlib/graphics/features/_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastplotlib/graphics/features/_common.py b/fastplotlib/graphics/features/_common.py index 71e979f77..884cd0109 100644 --- a/fastplotlib/graphics/features/_common.py +++ b/fastplotlib/graphics/features/_common.py @@ -130,7 +130,7 @@ def set_value(self, graphic, value: np.ndarray | list | tuple): class Visible(GraphicFeature): """Access or change the visibility.""" - property_name = "offset" + property_name = "visible" event_info_spec = [ {"dict key": "value", "type": "bool", "description": "new visibility bool"}, ]