Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 7e6d114

Browse filesBrowse files
committed
FIX: Made AffineDeltaTransform pass-through properly
1 parent 7275ad9 commit 7e6d114
Copy full SHA for 7e6d114

File tree

1 file changed

+3
-0
lines changed
Filter options

1 file changed

+3
-0
lines changed

‎lib/matplotlib/transforms.py

Copy file name to clipboardExpand all lines: lib/matplotlib/transforms.py
+3Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.