Skip to content

Commit

Permalink
OWTable: Don't set selection when there is no data on input
Browse files Browse the repository at this point in the history
  • Loading branch information
rokgomiscek committed Mar 29, 2019
1 parent d3ec31f commit 2e344fc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Orange/widgets/data/owtable.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,9 @@ def update(f):
current = self.tabs.currentWidget()
if current is not None:
self.set_info(current._input_slot.summary)
else:
self.__pending_selected_rows = None
self.__pending_selected_cols = None

self.tabs.tabBar().setVisible(self.tabs.count() > 1)
self.openContext(data)
Expand Down

0 comments on commit 2e344fc

Please sign in to comment.