From: <md...@us...> - 2009-01-27 13:19:00
|
Revision: 6840 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6840&view=rev Author: mdboom Date: 2009-01-27 12:23:53 +0000 (Tue, 27 Jan 2009) Log Message: ----------- Remove oops in commit. Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/backends/backend_gtk.py Modified: trunk/matplotlib/lib/matplotlib/backends/backend_gtk.py =================================================================== --- trunk/matplotlib/lib/matplotlib/backends/backend_gtk.py 2009-01-26 23:02:46 UTC (rev 6839) +++ trunk/matplotlib/lib/matplotlib/backends/backend_gtk.py 2009-01-27 12:23:53 UTC (rev 6840) @@ -349,10 +349,7 @@ if self._need_redraw: x, y, w, h = self.allocation self._pixmap_prepare (w, h) - try: - self._render_figure(self._pixmap, w, h) - except: - pass + self._render_figure(self._pixmap, w, h) self._need_redraw = False x, y, w, h = event.area This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |