Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Orange/widgets/data/owtable.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ def __init__(self):
)
view.setSortingEnabled(True)
view.setItemDelegate(TableDataDelegate(view))
view.selectionFinished.connect(self.update_selection)

if self.select_rows:
view.setSelectionBehavior(QTableView.SelectRows)
Expand Down Expand Up @@ -225,7 +226,6 @@ def _setup_table_view(self):

# update the header (attribute names)
self._update_variable_labels()
view.selectionFinished.connect(self.update_selection)

def _update_input_summary(self):
def format_summary(summary):
Expand Down