mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2025-04-07 19:38:25 +02:00
followup to disable adding accounts to p2sh legacy multisig
This commit is contained in:
parent
58e3b9dcdd
commit
2548e77d90
@ -255,7 +255,7 @@ public class SettingsController extends WalletFormController implements Initiali
|
||||
|
||||
scanDescriptorQR.setVisible(!walletForm.getWallet().isValid());
|
||||
export.setDisable(!walletForm.getWallet().isValid());
|
||||
addAccount.setDisable(!walletForm.getWallet().isValid());
|
||||
addAccount.setDisable(!walletForm.getWallet().isValid() || walletForm.getWallet().getScriptType() == ScriptType.P2SH);
|
||||
revert.setDisable(true);
|
||||
apply.setDisable(true);
|
||||
}
|
||||
@ -563,7 +563,7 @@ public class SettingsController extends WalletFormController implements Initiali
|
||||
public void walletSettingsChanged(WalletSettingsChangedEvent event) {
|
||||
if(event.getWalletId().equals(walletForm.getWalletId())) {
|
||||
export.setDisable(!event.getWallet().isValid());
|
||||
addAccount.setDisable(!event.getWallet().isValid());
|
||||
addAccount.setDisable(!event.getWallet().isValid() || event.getWallet().getScriptType() == ScriptType.P2SH);
|
||||
scanDescriptorQR.setVisible(!event.getWallet().isValid());
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user