Revision: 5923 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5923&view=rev Author: jdh2358 Date: 2008-07-29 18:01:16 +0000 (Tue, 29 Jul 2008)
Log Message: ----------- special case contains test for degenerate rectangle Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/backends/backend_wx.py Modified: trunk/matplotlib/lib/matplotlib/backends/backend_wx.py =================================================================== --- trunk/matplotlib/lib/matplotlib/backends/backend_wx.py 2008-07-29 17:47:50 UTC (rev 5922) +++ trunk/matplotlib/lib/matplotlib/backends/backend_wx.py 2008-07-29 18:01:16 UTC (rev 5923) @@ -696,6 +696,10 @@ except AttributeError: self.SetInitialSize = getattr(self, 'SetBestFittingSize', do_nothing) + + if not hasattr(self,'IsShownOnScreen'): + self.IsShownOnScreen = self.IsVisible + # Create the drawing bitmap self.bitmap =wx.EmptyBitmap(w, h) DEBUG_MSG("__init__() - bitmap w:%d h:%d" % (w,h), 2, self) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------- 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-checkins mailing list Matplotlib-checkins@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins