mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
add server list to setup.py
This commit is contained in:
parent
8da36e3bd1
commit
51718501fd
2 changed files with 7 additions and 0 deletions
|
@ -184,6 +184,11 @@ class ElectrumGui:
|
||||||
w = self.create_window_for_wallet(wallet)
|
w = self.create_window_for_wallet(wallet)
|
||||||
if uri:
|
if uri:
|
||||||
w.pay_to_URI(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
|
return w
|
||||||
|
|
||||||
def close_window(self, window):
|
def close_window(self, window):
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -71,6 +71,8 @@ setup(
|
||||||
},
|
},
|
||||||
package_data={
|
package_data={
|
||||||
'electrum': [
|
'electrum': [
|
||||||
|
'servers.json',
|
||||||
|
'servers_testnet.json',
|
||||||
'currencies.json',
|
'currencies.json',
|
||||||
'www/index.html',
|
'www/index.html',
|
||||||
'wordlist/*.txt',
|
'wordlist/*.txt',
|
||||||
|
|
Loading…
Add table
Reference in a new issue