Browse Source

use the parent config instance when daemon starts a window

283
ThomasV 10 years ago
parent
commit
93c468504e
  1. 7
      electrum
  2. 3
      gui/qt/__init__.py

7
electrum

@ -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']

3
gui/qt/__init__.py

@ -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)

Loading…
Cancel
Save