We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dd5ea2 commit f9cda23Copy full SHA for f9cda23
Orange/widgets/data/owsql.py
@@ -3,6 +3,8 @@
3
from AnyQt.QtGui import QCursor
4
from AnyQt.QtCore import Qt
5
6
+from orangewidget.utils.combobox import ComboBoxSearch
7
+
8
from Orange.data import Table
9
from Orange.data.sql.backend import Backend
10
from Orange.data.sql.backend.base import BackendError
@@ -116,7 +118,7 @@ def _add_tables_controls(self):
116
118
117
119
self.tables = TableModel()
120
- self.tablecombo = QComboBox(
121
+ self.tablecombo = ComboBoxSearch(
122
minimumContentsLength=35,
123
sizeAdjustPolicy=QComboBox.AdjustToMinimumContentsLengthWithIcon
124
)
0 commit comments