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

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-devel mailing list
Matplotlib-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-devel

Reply via email to