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 896880c commit c7865f0Copy full SHA for c7865f0
lib/matplotlib/text.py
@@ -458,6 +458,9 @@ def set_bbox(self, rectprops):
458
459
if rectprops is not None:
460
props = rectprops.copy()
461
+ # Dump the pad kwarg; we still need to figure out how to
462
+ # use it to expand the box, for backwards compatibility.
463
+ pad = props.pop('pad', 4) # noqa
464
boxstyle = props.pop("boxstyle", "square")
465
bbox_transmuter = props.pop("bbox_transmuter", None)
466
0 commit comments