Skip to content

Commit

Permalink
[dbmanager] Fixes #14740 - Previews do not work and python error for …
Browse files Browse the repository at this point in the history
…PG layers
  • Loading branch information
slarosa committed Jun 10, 2016
1 parent 02d8042 commit b9d1544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/db_manager/db_model.py
Expand Up @@ -487,7 +487,7 @@ def _refreshIndex(self, index, force=False):
if prevPopulated or force: if prevPopulated or force:
if item.populate(): if item.populate():
for child in item.childItems: for child in item.childItems:
child.itemChanged.connect(partial(self.refreshItem, item)) child.itemChanged.connect(partial(self.refreshItem, child))
self._onDataChanged(index) self._onDataChanged(index)
else: else:
self.notPopulated.emit(index) self.notPopulated.emit(index)
Expand Down

0 comments on commit b9d1544

Please sign in to comment.