Skip to content

Commit

Permalink
Merge pull request #6603 from ales-erjavec/oweditdomain-filter
Browse files Browse the repository at this point in the history
[ENH] oweditdomain: Add variable filter
  • Loading branch information
janezd authored Oct 20, 2023
2 parents 4352533 + 68559f3 commit ae377a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Orange/widgets/data/oweditdomain.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
)
from AnyQt.QtCore import pyqtSignal as Signal, pyqtSlot as Slot

from orangewidget.utils.listview import ListViewSearch

import Orange.data

from Orange.preprocess.transformation import (
Expand Down Expand Up @@ -2051,7 +2053,7 @@ def __init__(self):
box = gui.vBox(main, "Variables")

self.variables_model = VariableListModel(parent=self)
self.variables_view = self.domain_view = QListView(
self.variables_view = self.domain_view = ListViewSearch(
selectionMode=QListView.ExtendedSelection,
uniformItemSizes=True,
)
Expand Down

0 comments on commit ae377a2

Please sign in to comment.