tfix #680 - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit a8558a21bcf29ab7a36583340f140fefae705401
DIR parent 5a312290e21d1fe00e84d7eb562ee3bd708a1446
HTML Author: ThomasV <thomasv@gitorious>
Date: Thu, 8 May 2014 19:12:13 +0200
fix #680
Diffstat:
M gui/qt/__init__.py | 5 +++++
1 file changed, 5 insertions(+), 0 deletions(-)
---
DIR diff --git a/gui/qt/__init__.py b/gui/qt/__init__.py
t@@ -243,6 +243,11 @@ class ElectrumGui:
self.app.exec_()
+ # clipboard persistence
+ # see http://www.mail-archive.com/pyqt@riverbankcomputing.com/msg17328.html
+ event = QtCore.QEvent(QtCore.QEvent.Clipboard)
+ self.app.sendEvent(self.app.clipboard(), event)
+
wallet.stop_threads()