Skip to content

Commit

Permalink
v0.4 RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
wilhelmberg committed Jul 21, 2019
1 parent 6f9f597 commit faba5a9
Show file tree
Hide file tree
Showing 4 changed files with 229 additions and 221 deletions.
7 changes: 7 additions & 0 deletions CKAN-Browser/ckan_browser_dialog_dataproviders.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,13 @@ def item_checked_changed(self, item):
item.data().selected = False
return

# deselect all available servers.
# currently selected one might not be visible
# because of current search criteria
for server in self.servers:
server.selected = False

# now work on server visible in the list
for row in range(self.list_model.rowCount()):
i = self.list_model.item(row, 0)
if i != item and i.checkState() == Qt.Checked:
Expand Down
Loading

0 comments on commit faba5a9

Please sign in to comment.