Skip to content

Commit 419a7d3

Browse files
committed
ComboBoxSearch: Set focus policy
1 parent 087eb21 commit 419a7d3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Orange/widgets/utils/combobox.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ def __init__(self, *args, **kwargs):
5353
self.__popup = None # type: Optional[QAbstractItemModel]
5454
self.__proxy = None # type: Optional[QSortFilterProxyModel]
5555
self.__popupTimer = QElapsedTimer()
56+
self.setFocusPolicy(Qt.ClickFocus | Qt.TabFocus)
5657

5758
def showPopup(self):
5859
# type: () -> None

0 commit comments

Comments
 (0)