Merge pull request #628 from rdymac/are-frozen

add white space before BTC frozen message
This commit is contained in:
ThomasV 2014-03-26 18:16:45 +01:00
commit 8eeb5503ad
1 changed files with 1 additions and 1 deletions

View File

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