commit ab108481872bd95c754368d1c42dd0c68e8399ce
parent b31f4ca1333510ea55f3e6a8a4ecd313333cd8c6
Author: ThomasV <thomasv@electrum.org>
Date: Sat, 8 Jul 2017 17:48:23 +0200
network dialog: minor fixes
Diffstat:
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gui/qt/network_dialog.py b/gui/qt/network_dialog.py
@@ -304,8 +304,8 @@ class NetworkChoiceLayout(object):
if len(self.network.blockchains)>1:
checkpoint = self.network.get_checkpoint()
name = self.network.get_blockchain_name(self.network.blockchain())
- msg = _('Chain split detected at block %d')%checkpoint
- msg += '\n' + _('Your server is on branch') + ' ' + name
+ msg = _('Chain split detected at block %d')%checkpoint + '\n'
+ msg += (_('You are following branch') if auto_connect else _('Your server is on branch'))+ ' ' + name
else:
msg = ''
self.split_label.setText(msg)
@@ -343,6 +343,7 @@ class NetworkChoiceLayout(object):
host, port, protocol, proxy, auto_connect = self.network.get_parameters()
auto_connect = True
self.network.set_parameters(host, port, protocol, proxy, auto_connect)
+ self.update()
def follow_server(self, server):
self.network.switch_to_interface(server)
@@ -350,6 +351,7 @@ class NetworkChoiceLayout(object):
host, port, protocol = server.split(':')
auto_connect = False
self.network.set_parameters(host, port, protocol, proxy, auto_connect)
+ self.update()
def server_changed(self, x):
if x: