commit a8558a21bcf29ab7a36583340f140fefae705401 parent 5a312290e21d1fe00e84d7eb562ee3bd708a1446 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(-)
diff --git 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()