* src/WriteGedcom.py (GedcomWriterOptionBox.__init__): Build
person-centered filters only if a person is selected. svn: r4824
This commit is contained in:
parent
6ecb9eeab9
commit
d35d33b8f2
@ -1,6 +1,9 @@
|
||||
2005-06-15 Alex Roitman <shura@gramps-project.org>
|
||||
* src/WriteGedcom.py (GedcomWriterOptionBox.__init__): Build
|
||||
person-centered filters only if a person is selected.
|
||||
|
||||
2005-06-15 Martin Hawlisch <Martin.Hawlisch@gmx.de>
|
||||
* src/po/de.po: Applied patch from Jens Seidel <jensseidel@users.sf.net>
|
||||
|
||||
2005-06-10 Alex Roitman <shura@gramps-project.org>
|
||||
* src/docgen/AbiWord2Doc.py: Only embed one data chunk per image
|
||||
file; add empty paragraph if the image is not in paragraph already.
|
||||
|
@ -329,6 +329,7 @@ class GedcomWriterOptionBox:
|
||||
all.set_name(_("Entire Database"))
|
||||
all.add_rule(GenericFilter.Everyone([]))
|
||||
|
||||
if self.person:
|
||||
des = GenericFilter.GenericFilter()
|
||||
des.set_name(_("Descendants of %s") % NameDisplay.displayer.display(self.person))
|
||||
des.add_rule(GenericFilter.IsDescendantOf([self.person.get_handle(),1]))
|
||||
@ -343,6 +344,8 @@ class GedcomWriterOptionBox:
|
||||
com.add_rule(GenericFilter.HasCommonAncestorWith([self.person.get_handle()]))
|
||||
|
||||
self.filter_menu = GenericFilter.build_filter_menu([all,des,ans,com])
|
||||
else:
|
||||
self.filter_menu = GenericFilter.build_filter_menu([all])
|
||||
filter_obj.set_menu(self.filter_menu)
|
||||
|
||||
gedmap = GedcomInfo.GedcomInfoDB()
|
||||
|
Loading…
Reference in New Issue
Block a user