We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7275ad9 commit 7e6d114Copy full SHA for 7e6d114
lib/matplotlib/transforms.py
@@ -2711,9 +2711,12 @@ class AffineDeltaTransform(Affine2DBase):
2711
This class is experimental as of 3.3, and the API may change.
2712
"""
2713
2714
+ pass_through = True
2715
+
2716
def __init__(self, transform, **kwargs):
2717
super().__init__(**kwargs)
2718
self._base_transform = transform
2719
+ self.set_children(transform)
2720
2721
__str__ = _make_str_method("_base_transform")
2722
0 commit comments