2008-01-17 Benny Malengier <benny.malengier@gramps-project.org>

* src/DataViews/_RelationView.py: isue #1605, not twice in same family



svn: r9862
This commit is contained in:
Benny Malengier 2008-01-17 09:57:49 +00:00
parent d72778f1ea
commit e5a4f0c906
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2008-01-17 Benny Malengier <benny.malengier@gramps-project.org>
* src/DataViews/_RelationView.py: isue #1605, not twice in same family
2008-01-13 Stéphane Charette <stephanecharette@gmail.com>
* configure.in: released 2.2.10; update version number to 2.2.11

View File

@ -1080,7 +1080,8 @@ class RelationshipView(PageView.PersonNavView):
phandle = self.dbstate.get_active_person().handle
person = self.dbstate.db.get_person_from_handle(phandle)
skip = set(person.get_family_handle_list())
skip = set(person.get_family_handle_list() +
person.get_parent_family_handle_list())
dialog = SelectFamily(self.dbstate, self.uistate, skip=skip)
family = dialog.run()