From f6075a5825d545f1d5f024a8032068db67a79ce7 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 19 Jun 2025 09:44:56 +0200 Subject: [PATCH] follow-up ba3783f9989cdf9c96550c5fe4305f99be518b5c --- electrum/plugins/trustedcoin/qt.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/electrum/plugins/trustedcoin/qt.py b/electrum/plugins/trustedcoin/qt.py index 5ce9373b6..8d32e04a5 100644 --- a/electrum/plugins/trustedcoin/qt.py +++ b/electrum/plugins/trustedcoin/qt.py @@ -563,10 +563,9 @@ class WCKeepDisable(WalletWizardComponent): 'or do you want to disable it, and have two master private keys in your wallet?' ]) choices = [ - ('keep', _('Keep')), - ('disable', _('Disable')), + ChoiceItem(key='keep', label=_('Keep')), + ChoiceItem(key='disable', label=_('Disable')), ] - self.choice_w = ChoiceWidget(message=message, choices=choices) self.layout().addWidget(self.choice_w) self.layout().addStretch(1)