From a8558a21bcf29ab7a36583340f140fefae705401 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 8 May 2014 19:12:13 +0200 Subject: [PATCH] fix #680 --- gui/qt/__init__.py | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/gui/qt/__init__.py b/gui/qt/__init__.py index 07a449c..26cff8b 100644 --- a/gui/qt/__init__.py +++ b/gui/qt/__init__.py @@ -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() -- 1.7.1