Modifications so that GenericFilters can be applied to a PeopleModel.

svn: r9665
This commit is contained in:
Brian Matherly
2007-12-31 22:22:12 +00:00
parent cfbcdce095
commit e90e15c4af
4 changed files with 16 additions and 5 deletions

View File

@@ -334,7 +334,7 @@ class PeopleModel(gtk.GenericTreeModel):
while node:
self.total += 1
handle, d = node
if not (handle in skip or (dfilter and not dfilter.match(handle))):
if not (handle in skip or (dfilter and not dfilter.match(handle,self.db))):
name_data = d[PeopleModel._NAME_COL]
group_name = ngn(self.db, name_data)