mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 02:35:20 +00:00
trezor: use BIP39 backup by default even if Shamir is available
This commit is contained in:
parent
da41e4c289
commit
006c6c1a58
1 changed files with 1 additions and 2 deletions
|
@ -224,14 +224,13 @@ class QtPlugin(QtPluginBase):
|
|||
bg_backuptype.addButton(rb_single)
|
||||
bg_backuptype.setId(rb_single, BackupType.Bip39)
|
||||
hbox_backuptype.addWidget(rb_single)
|
||||
rb_single.setChecked(not have_shamir)
|
||||
rb_single.setChecked(True)
|
||||
|
||||
rb_shamir = QRadioButton(gb_backuptype)
|
||||
rb_shamir.setText(_('Shamir'))
|
||||
bg_backuptype.addButton(rb_shamir)
|
||||
bg_backuptype.setId(rb_shamir, BackupType.Slip39_Basic)
|
||||
hbox_backuptype.addWidget(rb_shamir)
|
||||
rb_shamir.setChecked(have_shamir)
|
||||
rb_shamir.setEnabled(Capability.Shamir in capabilities)
|
||||
|
||||
rb_shamir_groups = QRadioButton(gb_backuptype)
|
||||
|
|
Loading…
Add table
Reference in a new issue