fix: fix channel picker needing to hit bottom to select after searching
This commit is contained in:
parent
e33266aa2f
commit
1c95a495b8
|
@ -117,6 +117,9 @@ Popup {
|
||||||
if (event.key === Qt.Key_Enter || event.key === Qt.Key_Return) {
|
if (event.key === Qt.Key_Enter || event.key === Qt.Key_Return) {
|
||||||
return popup.onClicked(listView.currentIndex)
|
return popup.onClicked(listView.currentIndex)
|
||||||
}
|
}
|
||||||
|
if (!listView.currentItem.visible) {
|
||||||
|
goToNextAvailableIndex(false)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue