Skip to content

Commit

Permalink
fix signature mismatch with PySide
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas committed Apr 20, 2016
1 parent 0873a93 commit 5d8265c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rqt_console/src/rqt_console/message_proxy_model.py
Expand Up @@ -115,7 +115,7 @@ def handle_highlight_filters_changed(self):
self.invalidateFilter()
else:
self.invalidateFilter()
self.dataChanged.emit(self.index(0, 0), self.index(self.rowCount() - 1, self.columnCount() - 1))
self.dataChanged.emit(self.index(0, 0), self.index(self.rowCount() - 1, self.columnCount() - 1), [])

def add_exclude_filter(self, newfilter):
self._exclude_filters.append(newfilter)
Expand Down

0 comments on commit 5d8265c

Please sign in to comment.