mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 20:35:13 +00:00
fix tooltips
This commit is contained in:
parent
2515fc9b6a
commit
71ec50e634
2 changed files with 2 additions and 2 deletions
|
@ -129,7 +129,7 @@ class Plugin(BasePlugin):
|
||||||
self.wallet = wallet
|
self.wallet = wallet
|
||||||
self.window = window
|
self.window = window
|
||||||
self.wallet.plugin = self
|
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)
|
self.window.statusBar().addPermanentWidget(self.trezor_button)
|
||||||
if self.handler is None:
|
if self.handler is None:
|
||||||
self.handler = TrezorQtHandler(self.window.app)
|
self.handler = TrezorQtHandler(self.window.app)
|
||||||
|
|
|
@ -326,7 +326,7 @@ class Plugin(BasePlugin):
|
||||||
def load_wallet(self, wallet, window):
|
def load_wallet(self, wallet, window):
|
||||||
self.wallet = wallet
|
self.wallet = wallet
|
||||||
self.window = window
|
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.window.statusBar().addPermanentWidget(self.trustedcoin_button)
|
||||||
self.xpub = self.wallet.master_public_keys.get('x1/')
|
self.xpub = self.wallet.master_public_keys.get('x1/')
|
||||||
self.user_id = self.get_user_id()[1]
|
self.user_id = self.get_user_id()[1]
|
||||||
|
|
Loading…
Add table
Reference in a new issue