From 71ec50e634fee6ffc0ef567bd2e64fb86f479a16 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 6 Aug 2015 14:55:05 +0200 Subject: [PATCH] fix tooltips --- plugins/trezor.py | 2 +- plugins/trustedcoin.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/trezor.py b/plugins/trezor.py index 318455e35..1ab45d12f 100644 --- a/plugins/trezor.py +++ b/plugins/trezor.py @@ -129,7 +129,7 @@ class Plugin(BasePlugin): self.wallet = wallet self.window = window self.wallet.plugin = self - self.trezor_button = StatusBarButton( QIcon(":icons/trezor.png"), _("Network"), self.settings_dialog) + self.trezor_button = StatusBarButton(QIcon(":icons/trezor.png"), _("Trezor"), self.settings_dialog) self.window.statusBar().addPermanentWidget(self.trezor_button) if self.handler is None: self.handler = TrezorQtHandler(self.window.app) diff --git a/plugins/trustedcoin.py b/plugins/trustedcoin.py index 72ed55175..ec0d7c9f8 100644 --- a/plugins/trustedcoin.py +++ b/plugins/trustedcoin.py @@ -326,7 +326,7 @@ class Plugin(BasePlugin): def load_wallet(self, wallet, window): self.wallet = wallet self.window = window - self.trustedcoin_button = StatusBarButton( QIcon(":icons/trustedcoin.png"), _("Network"), self.settings_dialog) + self.trustedcoin_button = StatusBarButton(QIcon(":icons/trustedcoin.png"), _("TrustedCoin"), self.settings_dialog) self.window.statusBar().addPermanentWidget(self.trustedcoin_button) self.xpub = self.wallet.master_public_keys.get('x1/') self.user_id = self.get_user_id()[1]