Browse Source

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
283
rdymac 11 years ago
parent
commit
383763e24b
  1. 2
      gui/qt/main_window.py

2
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)

Loading…
Cancel
Save