From 383763e24b35df9ece459c8869b14ea7c35ecbc4 Mon Sep 17 00:00:00 2001 From: rdymac Date: Wed, 26 Mar 2014 17:47:22 +0100 Subject: [PATCH] add white space before BTC frozen message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added a white space before BTC in the not enough funds frozen message. The ‘Not enough funds…’ message does not disappear even after clicking the clear button. Only changing the amount to send restores the ‘Balance’ message --- gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 82ca5fbb..3a7076a2 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -779,7 +779,7 @@ class ElectrumWindow(QMainWindow): self.funds_error = True text = _( "Not enough funds" ) c, u = self.wallet.get_frozen_balance() - if c+u: text += ' (' + self.format_amount(c+u).strip() + self.base_unit() + ' ' +_("are frozen") + ')' + if c+u: text += ' (' + self.format_amount(c+u).strip() + ' ' + self.base_unit() + ' ' +_("are frozen") + ')' self.statusBar().showMessage(text) self.amount_e.setPalette(palette)