fix(StatusSeedPhraseInput): autocomplete when word not alone in the list

The problem was that if the clicked word (or tabbed) was not alone in the suggestion list, the done signal was not called. Now it is always called when clicking on using tab or enter.
This commit is contained in:
Jonathan Rainville 2022-05-10 11:56:41 -04:00 committed by Michał Cieślak
parent 1acbeb1962
commit 818374af1a
1 changed files with 4 additions and 2 deletions

View File

@ -211,9 +211,11 @@ Item {
}
function completeWordFill(seedWord) {
seedWordInput.input.edit.text = seedWord.trim();
// Changing the text of the input triggers the onTextChanged, thus signalling doneInsertingWord if the condition passes
let seedWordTrimmed = seedWord.trim();
root.setWord(seedWordTrimmed);
seedWordInput.input.edit.cursorPosition = seedWordInput.text.length;
seedSuggestionsList.model = 0;
root.doneInsertingWord(seedWordTrimmed);
}
clip: true