|
From: Jae-Joon L. <lee...@gm...> - 2008-07-28 14:26:53
|
Hello,
I just noticed that,if I use imshow(), part of axes border is not
clearly visible (the image hides the border).
And this seems to be due to the following changes in axes.draw()
method made in r5882.
--- lib/matplotlib/axes.py (revision 5881)
+++ lib/matplotlib/axes.py (revision 5882)
@@ -1503,8 +1503,6 @@
artists.extend(self.tables)
if self.legend_ is not None:
artists.append(self.legend_)
- if self.axison and self._frameon:
- artists.append(self.frame)
dsu = [ (a.zorder, i, a) for i, a in enumerate(artists)
if not a.get_animated() ]
Don't we need axes.frame to be drawn? Recovering those two lines
solved my problem.
Regards,
-JJ
|