mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-04 21:36:45 +00:00
add border wallets number grid support
This commit is contained in:
parent
483e4c8f38
commit
04145bde74
2 changed files with 8 additions and 0 deletions
|
@ -148,6 +148,13 @@ public class MnemonicGridDialog extends Dialog<List<String>> {
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
int index = Integer.parseInt(abbreviation);
|
||||
words.add(Bip39MnemonicCode.INSTANCE.getWordList().get(index - 1));
|
||||
} catch(NumberFormatException e) {
|
||||
//ignore
|
||||
}
|
||||
}
|
||||
|
||||
if(words.size() != abbreviations.size()) {
|
||||
|
|
|
@ -100,6 +100,7 @@ public class MnemonicKeystorePane extends TitledDescriptionPane {
|
|||
Optional<List<String>> optWords = mnemonicGridDialog.showAndWait();
|
||||
if(optWords.isPresent()) {
|
||||
List<String> words = optWords.get();
|
||||
defaultWordSizeProperty.set(words.size() + 1);
|
||||
setContent(getMnemonicWordsEntry(words.size() + 1, true, true));
|
||||
setExpanded(true);
|
||||
|
||||
|
|
Loading…
Reference in a new issue