Thanks to visit codestin.com Credit goes to github.com
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 5fd689b commit 1b17994Copy full SHA for 1b17994
1 file changed
lib/matplotlib/offsetbox.py
@@ -491,7 +491,8 @@ def get_extent(self, renderer):
491
def add_artist(self, a):
492
'Add any :class:`~matplotlib.artist.Artist` to the container box'
493
self._children.append(a)
494
- a.set_transform(self.get_transform())
+ if not a.is_transform_set():
495
+ a.set_transform(self.get_transform())
496
497
498
def draw(self, renderer):
0 commit comments