* src/plugins/Calendar.py: fix filter typo

svn: r7298
This commit is contained in:
Brian Matherly 2006-09-02 01:24:46 +00:00
parent 04bbebf702
commit 6bd8a7514e
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2006-09-01 Brian Matherly <brian@gramps-project.org>
* src/plugins/Calendar.py: fix filter typo
2006-09-01 Alex Roitman <shura@gramps-project.org> 2006-09-01 Alex Roitman <shura@gramps-project.org>
* src/GrampsDb/_DbUtils.py: Use normal addition: this updates * src/GrampsDb/_DbUtils.py: Use normal addition: this updates
reference_map properly. reference_map properly.

View File

@ -527,7 +527,7 @@ class FilterWidget(Widget):
if filter in ["descendant families", "all filters"]: if filter in ["descendant families", "all filters"]:
f = GenericFilter() f = GenericFilter()
f.set_name(_("Descendant Families of %s") % name) f.set_name(_("Descendant Families of %s") % name)
f.add_rule(Rules.Person.IsDescendantFamilyOf([gramps_id])) f.add_rule(Rules.Person.IsDescendantFamilyOf([gramps_id,1]))
retval.append(f) retval.append(f)
if filter in ["ancestors", "all filters"]: if filter in ["ancestors", "all filters"]:
f = GenericFilter() f = GenericFilter()