Skip to content

Commit 7e6d114

Browse files
committed
FIX: Made AffineDeltaTransform pass-through properly
1 parent 7275ad9 commit 7e6d114

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/matplotlib/transforms.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2711,9 +2711,12 @@ class AffineDeltaTransform(Affine2DBase):
27112711
This class is experimental as of 3.3, and the API may change.
27122712
"""
27132713

2714+
pass_through = True
2715+
27142716
def __init__(self, transform, **kwargs):
27152717
super().__init__(**kwargs)
27162718
self._base_transform = transform
2719+
self.set_children(transform)
27172720

27182721
__str__ = _make_str_method("_base_transform")
27192722

0 commit comments

Comments
 (0)