mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 01:11:35 +00:00
Merge pull request #366 from mkramlich/master
curses text UI now says Offline in --offline mode (matching the main Qt UI)
This commit is contained in:
commit
faa93e3010
1 changed files with 5 additions and 3 deletions
|
@ -122,7 +122,9 @@ class ElectrumGui:
|
||||||
|
|
||||||
|
|
||||||
def print_balance(self):
|
def print_balance(self):
|
||||||
if self.network and self.network.interface and self.network.interface.is_connected:
|
if not self.network:
|
||||||
|
msg = _("Offline")
|
||||||
|
elif self.network.interface and self.network.interface.is_connected:
|
||||||
if not self.wallet.up_to_date:
|
if not self.wallet.up_to_date:
|
||||||
msg = _("Synchronizing...")
|
msg = _("Synchronizing...")
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue