electrum

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

commit 8f84a90ab513ab07fd411279e0a24dd0faf47ede
parent 15826e18b863576bb4f5afaf00d86101030dbb45
Author: ThomasV <electrumdev@gmail.com>
Date:   Thu, 30 Apr 2015 07:01:35 +0200

Merge pull request #1170 from kyuupichan/tray_tip_wallet

Tray tip wallet
Diffstat:
Mgui/qt/main_window.py | 7++++---
Mlib/wallet.py | 3+++
2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py @@ -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") diff --git a/lib/wallet.py b/lib/wallet.py @@ -231,6 +231,9 @@ class Abstract_Wallet(object): def get_action(self): pass + def basename(self): + return os.path.basename(self.storage.path) + def convert_imported_keys(self, password): for k, v in self.imported_keys.items(): sec = pw_decode(v, password)