From 7cdb7319ee438acfa85f1e3e7f19735849d0e0d3 Mon Sep 17 00:00:00 2001 From: Craig Raw Date: Mon, 24 Oct 2022 13:05:44 +0200 Subject: [PATCH] multisig backup dialog tweaks --- .../sparrow/wallet/MultisigBackupDialog.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/sparrowwallet/sparrow/wallet/MultisigBackupDialog.java b/src/main/java/com/sparrowwallet/sparrow/wallet/MultisigBackupDialog.java index 2adc1837..ce32cc87 100644 --- a/src/main/java/com/sparrowwallet/sparrow/wallet/MultisigBackupDialog.java +++ b/src/main/java/com/sparrowwallet/sparrow/wallet/MultisigBackupDialog.java @@ -26,9 +26,9 @@ public class MultisigBackupDialog extends Dialog { setTitle("Backup Multisig Wallet?"); 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" + - "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" + + dialogPane.setHeaderText("To restore this multisig wallet, you need at least " + wallet.getDefaultPolicy().getNumSignaturesRequired() + " seeds and ALL of the xpubs! " + + "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 " + wallet.getKeystores().size() + " of the xpubs and is shown below. " + "Alternatively, use the Export button below to export the Sparrow wallet file."); setDialogPane(dialogPane); @@ -54,7 +54,7 @@ public class MultisigBackupDialog extends Dialog { dialogPane.getButtonTypes().add(qrButtonType); dialogPane.setPrefWidth(700); - dialogPane.setPrefHeight(350); + dialogPane.setPrefHeight(500); AppServices.moveToActiveWindowScreen(this); }