File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change
1
+ 2014-03-24 Changed the behaviour of axes to not ignore leading or trailing
2
+ patches of height 0 while calculating the x and y axis limits.
3
+
1
4
2014-03-17 Bug was fixed in append_axes from the AxesDivider class would not
2
5
append axes in the right location with respect to the reference
3
6
locator axes
Original file line number Diff line number Diff line change @@ -1546,7 +1546,7 @@ def _update_patch_limits(self, patch):
1546
1546
1547
1547
# cannot check for '==0' since unitized data may not compare to zero
1548
1548
if (isinstance (patch , mpatches .Rectangle ) and
1549
- ((not patch .get_width ()) or (not patch .get_height ()))):
1549
+ ((not patch .get_width ()) and (not patch .get_height ()))):
1550
1550
return
1551
1551
vertices = patch .get_path ().vertices
1552
1552
if vertices .size > 0 :
You can’t perform that action at this time.
0 commit comments