mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-12-24 12:46:45 +00:00
multisig backup dialog tweaks
This commit is contained in:
parent
d1ff8d6e3e
commit
7cdb7319ee
1 changed files with 4 additions and 4 deletions
|
@ -26,9 +26,9 @@ public class MultisigBackupDialog extends Dialog<String> {
|
||||||
setTitle("Backup Multisig Wallet?");
|
setTitle("Backup Multisig Wallet?");
|
||||||
|
|
||||||
DialogPane dialogPane = new MultisigBackupDialogPane();
|
DialogPane dialogPane = new MultisigBackupDialogPane();
|
||||||
dialogPane.setHeaderText("To restore this multisig wallet, you need at least " + wallet.getDefaultPolicy().getNumSignaturesRequired() + " seeds and ALL of the xpubs!\n" +
|
dialogPane.setHeaderText("To restore this multisig wallet, you need at least " + wallet.getDefaultPolicy().getNumSignaturesRequired() + " seeds and ALL of the xpubs! " +
|
||||||
"It is recommended to backup either this wallet file, or the wallet output descriptor.\n\n" +
|
"For the xpubs, it is recommended to backup either this wallet file, or the wallet output descriptor.\n\n" +
|
||||||
"The wallet output descriptor contains all the xpubs and is shown below.\n" +
|
"The wallet output descriptor contains all " + wallet.getKeystores().size() + " of the xpubs and is shown below. " +
|
||||||
"Alternatively, use the Export button below to export the Sparrow wallet file.");
|
"Alternatively, use the Export button below to export the Sparrow wallet file.");
|
||||||
setDialogPane(dialogPane);
|
setDialogPane(dialogPane);
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@ public class MultisigBackupDialog extends Dialog<String> {
|
||||||
dialogPane.getButtonTypes().add(qrButtonType);
|
dialogPane.getButtonTypes().add(qrButtonType);
|
||||||
|
|
||||||
dialogPane.setPrefWidth(700);
|
dialogPane.setPrefWidth(700);
|
||||||
dialogPane.setPrefHeight(350);
|
dialogPane.setPrefHeight(500);
|
||||||
AppServices.moveToActiveWindowScreen(this);
|
AppServices.moveToActiveWindowScreen(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue