Fix incorrect suggestion input when entering seed phrase (#12662)
Co-authored-by: kounkou <jacques@status.im>
This commit is contained in:
parent
1eab90173e
commit
a42fa6d8dc
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue