add white space before BTC frozen message

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
This commit is contained in:
rdymac 2014-03-26 17:47:22 +01:00
parent 437fdf4760
commit 383763e24b
1 changed files with 1 additions and 1 deletions

View File

@ -779,7 +779,7 @@ class ElectrumWindow(QMainWindow):
self.funds_error = True self.funds_error = True
text = _( "Not enough funds" ) text = _( "Not enough funds" )
c, u = self.wallet.get_frozen_balance() 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.statusBar().showMessage(text)
self.amount_e.setPalette(palette) self.amount_e.setPalette(palette)