Browse Source

Merge pull request #2820 from benma/qt_threading

fix Qt threading issue
master
ThomasV 8 years ago committed by GitHub
parent
commit
ad15c6a80e
  1. 1
      gui/qt/__init__.py

1
gui/qt/__init__.py

@ -82,6 +82,7 @@ class ElectrumGui:
# GC-ed when windows are closed # GC-ed when windows are closed
#network.add_jobs([DebugMem([Abstract_Wallet, SPV, Synchronizer, #network.add_jobs([DebugMem([Abstract_Wallet, SPV, Synchronizer,
# ElectrumWindow], interval=5)]) # ElectrumWindow], interval=5)])
QtCore.QCoreApplication.setAttribute(QtCore.Qt.AA_X11InitThreads)
self.config = config self.config = config
self.daemon = daemon self.daemon = daemon
self.plugins = plugins self.plugins = plugins

Loading…
Cancel
Save