Skip to content

Commit

Permalink
Fix incorrect suggestion input when entering seed phrase (#12662)
Browse files Browse the repository at this point in the history
Co-authored-by: kounkou <jacques@status.im>
  • Loading branch information
2 people authored and jrainville committed Nov 15, 2023
1 parent a6827f7 commit 89e963e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ui/StatusQ/src/StatusQ/Controls/StatusSeedPhraseInput.qml
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,11 @@ Item {
}
if (input.edit.keyEvent === Qt.Key_Down) {
seedSuggestionsList.incrementCurrentIndex()
input.edit.keyEvent = null
}
if (input.edit.keyEvent === Qt.Key_Up) {
seedSuggestionsList.decrementCurrentIndex()
input.edit.keyEvent = null
}
root.keyPressed(event);
}
Expand Down

0 comments on commit 89e963e

Please sign in to comment.