mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2025-11-05 11:56:37 +00:00
fix cancel of create wallet in terminal
This commit is contained in:
parent
011bb86b5f
commit
47f7b8870c
1 changed files with 14 additions and 12 deletions
|
|
@ -147,6 +147,7 @@ public class MasterActionListBox extends ActionListBox {
|
||||||
newWalletNameBuilder.setValidator(content -> content.isEmpty() ? "Please enter a name" : (Storage.walletExists(content) ? "Wallet already exists" : null));
|
newWalletNameBuilder.setValidator(content -> content.isEmpty() ? "Please enter a name" : (Storage.walletExists(content) ? "Wallet already exists" : null));
|
||||||
String walletName = newWalletNameBuilder.build().showDialog(SparrowTerminal.get().getGui());
|
String walletName = newWalletNameBuilder.build().showDialog(SparrowTerminal.get().getGui());
|
||||||
|
|
||||||
|
if(walletName != null) {
|
||||||
ActionListDialogBuilder newBuilder = new ActionListDialogBuilder();
|
ActionListDialogBuilder newBuilder = new ActionListDialogBuilder();
|
||||||
newBuilder.setTitle("Create Wallet");
|
newBuilder.setTitle("Create Wallet");
|
||||||
newBuilder.setDescription("Choose the type of wallet");
|
newBuilder.setDescription("Choose the type of wallet");
|
||||||
|
|
@ -160,4 +161,5 @@ public class MasterActionListBox extends ActionListBox {
|
||||||
});
|
});
|
||||||
newBuilder.build().showDialog(SparrowTerminal.get().getGui());
|
newBuilder.build().showDialog(SparrowTerminal.get().getGui());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue