|
|
@ -55,7 +55,7 @@ class Plugin(TrustedCoinPlugin): |
|
|
|
action = lambda: window.show_message(msg) |
|
|
|
else: |
|
|
|
action = partial(self.settings_dialog, window) |
|
|
|
button = StatusBarButton(QIcon(":icons/trustedcoin.png"), |
|
|
|
button = StatusBarButton(QIcon(":icons/trustedcoin-status.png"), |
|
|
|
_("TrustedCoin"), action) |
|
|
|
window.statusBar().addPermanentWidget(button) |
|
|
|
t = Thread(target=self.request_billing_info, args=(wallet,)) |
|
|
@ -127,7 +127,7 @@ class Plugin(TrustedCoinPlugin): |
|
|
|
hbox = QHBoxLayout() |
|
|
|
|
|
|
|
logo = QLabel() |
|
|
|
logo.setPixmap(QPixmap(":icons/trustedcoin.png")) |
|
|
|
logo.setPixmap(QPixmap(":icons/trustedcoin-status.png")) |
|
|
|
msg = _('This wallet is protected by TrustedCoin\'s two-factor authentication.') + '<br/>'\ |
|
|
|
+ _("For more information, visit") + " <a href=\"https://api.trustedcoin.com/#/electrum-help\">https://api.trustedcoin.com/#/electrum-help</a>" |
|
|
|
label = QLabel(msg) |
|
|
|