mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
fix: make uri optional in new_window
This commit is contained in:
parent
3cc7c1454b
commit
2a889d318b
1 changed files with 2 additions and 2 deletions
|
@ -199,9 +199,9 @@ class ElectrumGui:
|
||||||
return
|
return
|
||||||
wallet = wizard.run(action, wallet_type)
|
wallet = wizard.run(action, wallet_type)
|
||||||
if wallet:
|
if wallet:
|
||||||
self.start_new_window(full_path, None)
|
self.new_window(full_path)
|
||||||
|
|
||||||
def new_window(self, path, uri):
|
def new_window(self, path, uri=None):
|
||||||
# Use a signal as can be called from daemon thread
|
# Use a signal as can be called from daemon thread
|
||||||
self.app.emit(SIGNAL('new_window'), path, uri)
|
self.app.emit(SIGNAL('new_window'), path, uri)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue