* src/plugins/Calendar.py: fix filter typo
svn: r7298
This commit is contained in:
parent
04bbebf702
commit
6bd8a7514e
@ -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.
|
||||||
|
@ -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()
|
||||||
|
Loading…
Reference in New Issue
Block a user