2006-08-12 Don Allingham <don@gramps-project.org>
* src/PageView.py: fix search argument when filter applied svn: r7158
This commit is contained in:
parent
3949150144
commit
5c12d70cfe
@ -1,3 +1,6 @@
|
|||||||
|
2006-08-12 Don Allingham <don@gramps-project.org>
|
||||||
|
* src/PageView.py: fix search argument when filter applied
|
||||||
|
|
||||||
2006-08-11 Brian Matherly <brian@gramps-project.org>
|
2006-08-11 Brian Matherly <brian@gramps-project.org>
|
||||||
* src/plugins/DetDescendantReport.py: fix spouse name printing
|
* src/plugins/DetDescendantReport.py: fix spouse name printing
|
||||||
* src/plugins/DetAncestralReport.py: fix spouse name printing
|
* src/plugins/DetAncestralReport.py: fix spouse name printing
|
||||||
|
@ -624,7 +624,7 @@ class ListView(BookMarkView):
|
|||||||
if Config.get(Config.FILTER):
|
if Config.get(Config.FILTER):
|
||||||
search = EMPTY_SEARCH
|
search = EMPTY_SEARCH
|
||||||
else:
|
else:
|
||||||
search = self.search_bar.get_value()
|
search = (False,self.search_bar.get_value())
|
||||||
|
|
||||||
self.model = self.make_model(self.dbstate.db, self.sort_col, order,
|
self.model = self.make_model(self.dbstate.db, self.sort_col, order,
|
||||||
search=search,
|
search=search,
|
||||||
|
Loading…
Reference in New Issue
Block a user