X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=gui%2Fqt%2Fmain_window.py;h=19f99c2a4e1647f88858d3de56ae56f79c95ecad;hb=50c9830f794ae1f7e24668b95c63a166ecc44933;hp=b51c80f347d0d87a6c19cb63f4b29c4b68fd8217;hpb=e462ef48cdcbf71cef126ec473988a69fd306bbb;p=electrum-nvc.git diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index b51c80f..19f99c2 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -535,6 +535,9 @@ class ElectrumWindow(QMainWindow): if not self.wallet.up_to_date: text = _("Synchronizing...") icon = QIcon(":icons/status_waiting.png") + elif self.network.is_lagging: + text = _("Server is lagging") + icon = QIcon(":icons/status_lagging.png") else: c, u = self.wallet.get_account_balance(self.current_account) text = _( "Balance" ) + ": %s "%( self.format_amount(c) ) + self.base_unit()