From aebdc60c7e8ab526791d51588ff02e29ae65fe87 Mon Sep 17 00:00:00 2001 From: Willi Ballenthin Date: Wed, 2 Sep 2020 13:55:16 -0600 Subject: [PATCH] ida plugin: filter on all columns --- capa/ida/plugin/proxy.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/capa/ida/plugin/proxy.py b/capa/ida/plugin/proxy.py index b35408cf..27629f96 100644 --- a/capa/ida/plugin/proxy.py +++ b/capa/ida/plugin/proxy.py @@ -125,8 +125,7 @@ class CapaExplorerSearchProxyModel(QtCore.QSortFilterProxyModel): """ """ super(CapaExplorerSearchProxyModel, self).__init__(parent) self.query = "" - self.setFilterKeyColumn(CapaExplorerDataModel.COLUMN_INDEX_RULE_INFORMATION) - self.setDynamicSortFilter(True) + self.setFilterKeyColumn(-1) # all columns def filterAcceptsRow(self, row, parent): """true if the item in the row indicated by the given row and parent