From 47f3a8493175a2dad8db5821b157e0abef4c5baf Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 13 May 2012 11:09:31 +0200 Subject: [PATCH] revert previous commit --- lib/gui_qt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gui_qt.py b/lib/gui_qt.py index a5a28245..d6bc24e3 100644 --- a/lib/gui_qt.py +++ b/lib/gui_qt.py @@ -168,6 +168,7 @@ class ElectrumWindow(QMainWindow): self.create_status_bar() self.setGeometry(100,100,840,400) title = 'Electrum ' + self.wallet.electrum_version + ' - ' + self.wallet.path + if not self.wallet.seed: title += ' [seedless]' self.setWindowTitle( title ) self.show() @@ -219,7 +220,6 @@ class ElectrumWindow(QMainWindow): c, u = self.wallet.get_balance() text = "Balance: %s "%( format_satoshis(c,False,self.wallet.num_zeros) ) if u: text += "[%s unconfirmed]"%( format_satoshis(u,True,self.wallet.num_zeros).strip() ) - if not self.wallet.seed: text += ' [seedless]' icon = QIcon(":icons/status_connected.png") else: text = "Not connected"