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) {
|
if (input.edit.keyEvent === Qt.Key_Down) {
|
||||||
seedSuggestionsList.incrementCurrentIndex()
|
seedSuggestionsList.incrementCurrentIndex()
|
||||||
|
input.edit.keyEvent = null
|
||||||
}
|
}
|
||||||
if (input.edit.keyEvent === Qt.Key_Up) {
|
if (input.edit.keyEvent === Qt.Key_Up) {
|
||||||
seedSuggestionsList.decrementCurrentIndex()
|
seedSuggestionsList.decrementCurrentIndex()
|
||||||
|
input.edit.keyEvent = null
|
||||||
}
|
}
|
||||||
root.keyPressed(event);
|
root.keyPressed(event);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue