From: <jd...@us...> - 2008-05-22 18:17:03
|
Revision: 5216 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5216&view=rev Author: jdh2358 Date: 2008-05-22 11:16:43 -0700 (Thu, 22 May 2008) Log Message: ----------- Merged revisions 5215 via svnmerge from https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/v0_91_maint ........ r5215 | jdh2358 | 2008-05-22 13:14:59 -0500 (Thu, 22 May 2008) | 1 line fixed a wx bug ........ Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/backends/backend_wx.py Property Changed: ---------------- trunk/matplotlib/ Property changes on: trunk/matplotlib ___________________________________________________________________ Name: svnmerge-integrated - /branches/v0_91_maint:1-5213 + /branches/v0_91_maint:1-5215 Modified: trunk/matplotlib/lib/matplotlib/backends/backend_wx.py =================================================================== --- trunk/matplotlib/lib/matplotlib/backends/backend_wx.py 2008-05-22 18:14:59 UTC (rev 5215) +++ trunk/matplotlib/lib/matplotlib/backends/backend_wx.py 2008-05-22 18:16:43 UTC (rev 5216) @@ -1353,7 +1353,7 @@ def set_window_title(self, title): self.window.SetTitle(title) - def resize(self, width, height) + def resize(self, width, height): 'Set the canvas size in pixels' self.canvas.SetInitialSize(wx.Size(width, height)) self.window.GetSizer().Fit(self.window) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |