show wallet name in delete dialog

This commit is contained in:
Craig Raw 2022-07-05 09:22:13 +02:00
parent c780a8d944
commit ba9aed5395

View file

@ -1879,7 +1879,7 @@ public class AppController implements Initializable {
} }
private void deleteWallet(WalletForm selectedWalletForm) { private void deleteWallet(WalletForm selectedWalletForm) {
Optional<ButtonType> optButtonType = AppServices.showWarningDialog("Delete Wallet?", "The wallet file and any backups will be deleted. Are you sure?", ButtonType.NO, ButtonType.YES); Optional<ButtonType> optButtonType = AppServices.showWarningDialog("Delete " + selectedWalletForm.getWallet().getMasterName() + "?", "The wallet file and any backups will be deleted. Are you sure?", ButtonType.NO, ButtonType.YES);
if(optButtonType.isPresent() && optButtonType.get() == ButtonType.YES) { if(optButtonType.isPresent() && optButtonType.get() == ButtonType.YES) {
Storage storage = selectedWalletForm.getStorage(); Storage storage = selectedWalletForm.getStorage();
if(selectedWalletForm.getMasterWallet().isEncrypted()) { if(selectedWalletForm.getMasterWallet().isEncrypted()) {