8000 Bugfix. · dhx/matplotlib@a2576a7 · GitHub
[go: up one dir, main page]

Skip to content

Commit a2576a7

Browse files
committed
Bugfix.
svn path=/branches/transforms/; revision=4602
1 parent 2de53cd commit a2576a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/axis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1125,7 +1125,7 @@ def _update_label_position(self, bboxes, bboxes2):
11251125
if not len(bboxes2):
11261126
top = self.axes.bbox.ymax
11271127
else:
1128-
bbox = bbox_union(bboxes2)
1128+
bbox = Bbox.union(bboxes2)
11291129
top = bbox.y1
11301130
self.label.set_position( (x, top+self.LABELPAD*self.figure.dpi / 72.0))
11311131

0 commit comments

Comments
 (0)
0