use the parent config instance when daemon starts a window

This commit is contained in:
ThomasV 2015-09-02 09:55:45 +02:00
parent 3e4d332a4c
commit 93c468504e
2 changed files with 4 additions and 6 deletions

View File

@ -296,13 +296,14 @@ class ClientThread(util.DaemonThread):
cmd = config.get('cmd')
if cmd == 'gui':
if self.server.gui:
if hasattr(server.gui, 'new_window'):
self.server.gui.new_window(config)
if hasattr(server.gui, 'load_wallet_file'):
path = config.get_wallet_path()
self.server.gui.load_wallet_file(path)
response = "ok"
else:
response = "error: current GUI does not support multiple windows"
else:
response = "error: Electrum daemon is running"
response = "Error: Electrum is running in daemon mode. Please stop the daemon first."
elif cmd == 'daemon':
sub = config.get('subcommand')
assert sub in ['start', 'stop', 'status']

View File

@ -113,9 +113,6 @@ class ElectrumGui:
for window in self.windows:
window.close()
def new_window(self, config):
self.app.emit(SIGNAL('new_window'), config)
def load_wallet_file(self, path):
self.app.emit(SIGNAL('new_window'), self.config, path)