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.
2 parents 72b0a92 + ff5748b commit c29c773Copy full SHA for c29c773
1 file changed
lib/matplotlib/text.py
@@ -240,7 +240,8 @@ def update(self, kwargs):
240
"""
241
bbox = kwargs.pop('bbox', None)
242
super(Text, self).update(kwargs)
243
- self.set_bbox(bbox) # depends on font properties
+ if bbox:
244
+ self.set_bbox(bbox) # depends on font properties
245
246
def __getstate__(self):
247
d = super(Text, self).__getstate__()
0 commit comments