1
0

Merge pull request #1170 from kyuupichan/tray_tip_wallet

Tray tip wallet
This commit is contained in:
ThomasV
2015-04-30 07:01:35 +02:00
2 changed files with 7 additions and 3 deletions

View File

@@ -211,8 +211,9 @@ 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)
title = 'Electrum ' + self.wallet.electrum_version + ' - ' + os.path.basename(self.wallet.storage.path)
if self.wallet.is_watching_only(): title += ' [%s]' % (_('watching only'))
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()
@@ -536,7 +537,7 @@ class ElectrumWindow(QMainWindow):
text += "%s"%quote
if self.tray:
self.tray.setToolTip(text)
self.tray.setToolTip("%s (%s)" % (text, self.wallet.basename()))
icon = QIcon(":icons/status_connected.png")
else:
text = _("Not connected")