fix(@desktop/sendModel): Use tab to focus to next field (#12571)
This commit is contained in:
parent
ccd8c5b65f
commit
7de6eaa787
|
@ -309,6 +309,8 @@ StatusDialog {
|
||||||
|
|
||||||
formatCurrencyAmount: d.currencyStore.formatCurrencyAmount
|
formatCurrencyAmount: d.currencyStore.formatCurrencyAmount
|
||||||
onReCalculateSuggestedRoute: popup.recalculateRoutesAndFees()
|
onReCalculateSuggestedRoute: popup.recalculateRoutesAndFees()
|
||||||
|
input.input.tabNavItem: recipientLoader.item
|
||||||
|
Keys.onTabPressed: event.accepted = true
|
||||||
}
|
}
|
||||||
|
|
||||||
// Horizontal spacer
|
// Horizontal spacer
|
||||||
|
|
|
@ -199,6 +199,7 @@ Loader {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Keys.onTabPressed: event.accepted = true
|
||||||
Keys.onReleased: {
|
Keys.onReleased: {
|
||||||
let plainText = store.plainText(input.edit.text)
|
let plainText = store.plainText(input.edit.text)
|
||||||
if(!plainText) {
|
if(!plainText) {
|
||||||
|
|
Loading…
Reference in New Issue