1
0

Shrink size of changes; functionality unchanged.

This commit is contained in:
Neil Booth
2015-04-30 13:32:01 +09:00
parent 506ed8ee74
commit db2517b901
2 changed files with 5 additions and 11 deletions

View File

@@ -200,12 +200,6 @@ class ElectrumWindow(QMainWindow):
self.wallet.stop_threads()
run_hook('close_wallet')
def title(self):
s = 'Electrum %s - %s' % (self.wallet.electrum_version, self.wallet.basename())
if self.wallet.is_watching_only():
s += ' [%s]' % (_('watching only'))
return s
def load_wallet(self, wallet):
import electrum
self.wallet = wallet
@@ -217,7 +211,10 @@ class ElectrumWindow(QMainWindow):
self.dummy_address = a[0] if a else None
self.accounts_expanded = self.wallet.storage.get('accounts_expanded',{})
self.current_account = self.wallet.storage.get("current_account", None)
self.setWindowTitle( self.title() )
title = 'Electrum %s - %s' % (self.wallet.electrum_version, self.wallet.basename())
if self.wallet.is_watching_only():
title += ' [%s]' % (_('watching only'))
self.setWindowTitle( title )
self.update_history_tab()
self.update_wallet()
# Once GUI has been initialized check if we want to announce something since the callback has been called before the GUI was initialized