Browse Source

fix network dialog

283
ThomasV 12 years ago
parent
commit
964c7dd75b
  1. 2
      lib/gui_qt.py

2
lib/gui_qt.py

@ -1890,7 +1890,7 @@ class ElectrumWindow(QMainWindow):
interface = wallet.interface
if parent:
if interface.is_connected:
status = _("Connected to")+" %s\n%d "+_("blocks")%(interface.host, wallet.verifier.height)
status = _("Connected to")+" %s\n%d "%(interface.host, wallet.verifier.height)+_("blocks")
else:
status = _("Not connected")
server = interface.server

Loading…
Cancel
Save