fix: Holdings dropdown searcher locked
Set the `KeyNavigation.backtab` to itself to avoid accidentally pressing `Shift+Tab` and tab away from the focused `StatusInput` (which makes it look like it's disabled) Fixes #10561
This commit is contained in:
parent
5b94cad94e
commit
a263b16862
|
@ -66,6 +66,8 @@ ColumnLayout {
|
|||
addOrUpdateButton.clicked()
|
||||
}
|
||||
|
||||
KeyNavigation.backtab: domainNameInput
|
||||
|
||||
Component.onCompleted: {
|
||||
if (text) {
|
||||
input.dirty = true
|
||||
|
|
|
@ -393,6 +393,8 @@ Item {
|
|||
return qsTr("Search collectibles")
|
||||
}
|
||||
|
||||
KeyNavigation.backtab: searcher
|
||||
|
||||
Binding on placeholderText {
|
||||
when: d.currentItemName !== ""
|
||||
value: qsTr("Search %1").arg(d.currentItemName)
|
||||
|
|
Loading…
Reference in New Issue