|
From: <md...@us...> - 2010-11-01 13:05:47
|
Revision: 8768
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8768&view=rev
Author: mdboom
Date: 2010-11-01 13:05:41 +0000 (Mon, 01 Nov 2010)
Log Message:
-----------
Merged revisions 8767 via svnmerge from
https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v1_0_maint
........
r8767 | mdboom | 2010-11-01 09:04:29 -0400 (Mon, 01 Nov 2010) | 2 lines
Flush the clipboard after pasting to it so that the data remains after matplotlib is closed. (Reported by Daniel Hyams on the mailing list).
........
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/backends/backend_wx.py
Property Changed:
----------------
trunk/matplotlib/
Property changes on: trunk/matplotlib
___________________________________________________________________
Modified: svnmerge-integrated
- /branches/mathtex:1-7263 /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-7253 /branches/v1_0_maint:1-8764 /trunk/matplotlib:1-7315
+ /branches/mathtex:1-7263 /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-7253 /branches/v1_0_maint:1-8767 /trunk/matplotlib:1-7315
Modified: trunk/matplotlib/lib/matplotlib/backends/backend_wx.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/backends/backend_wx.py 2010-11-01 13:04:29 UTC (rev 8767)
+++ trunk/matplotlib/lib/matplotlib/backends/backend_wx.py 2010-11-01 13:05:41 UTC (rev 8768)
@@ -775,6 +775,7 @@
wx.TheClipboard.Open()
wx.TheClipboard.SetData(bmp_obj)
wx.TheClipboard.Close()
+ wx.TheClipboard.Flush()
def Printer_Init(self):
"""
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|