electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 8eeb5503ada64dd7873561c45a40c6315b2fddcd
parent 437fdf4760c1a1b6e322ed71fb464bd615ac9dbe
Author: ThomasV <thomasv1@gmx.de>
Date:   Wed, 26 Mar 2014 18:16:45 +0100

Merge pull request #628 from rdymac/are-frozen

add white space before BTC frozen message
Diffstat:
Mgui/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 @@ -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)