From 1c95a495b89c9388540db4b15a8d4ea8f4824fee Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Mon, 29 Mar 2021 11:27:38 -0400 Subject: [PATCH] fix: fix channel picker needing to hit bottom to select after searching --- ui/shared/status/StatusInputListPopup.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/shared/status/StatusInputListPopup.qml b/ui/shared/status/StatusInputListPopup.qml index 449b4bcf8d..9be03e21f7 100644 --- a/ui/shared/status/StatusInputListPopup.qml +++ b/ui/shared/status/StatusInputListPopup.qml @@ -117,6 +117,9 @@ Popup { if (event.key === Qt.Key_Enter || event.key === Qt.Key_Return) { return popup.onClicked(listView.currentIndex) } + if (!listView.currentItem.visible) { + goToNextAvailableIndex(false) + } } }