tadd server list to setup.py - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 51718501fd53543537d971b106dd84633f74af27 DIR parent 8da36e3bd17cd4470f55a682ccc36fc52e8ccb2f HTML Author: ThomasV <thomasv@electrum.org> Date: Thu, 14 Sep 2017 10:25:04 +0200 add server list to setup.py Diffstat: M gui/qt/__init__.py | 5 +++++ M setup.py | 2 ++ 2 files changed, 7 insertions(+), 0 deletions(-) --- DIR diff --git a/gui/qt/__init__.py b/gui/qt/__init__.py t@@ -184,6 +184,11 @@ class ElectrumGui: w = self.create_window_for_wallet(wallet) if uri: w.pay_to_URI(uri) + w.bring_to_top() + w.setWindowState(w.windowState() & ~QtCore.Qt.WindowMinimized | QtCore.Qt.WindowActive) + + # this will activate the window + w.activateWindow() return w def close_window(self, window): DIR diff --git a/setup.py b/setup.py t@@ -71,6 +71,8 @@ setup( }, package_data={ 'electrum': [ + 'servers.json', + 'servers_testnet.json', 'currencies.json', 'www/index.html', 'wordlist/*.txt',