From 4ad552b52a406e1ed9c9cbfc8e07ec0d226d0286 Mon Sep 17 00:00:00 2001 From: Benny Malengier Date: Thu, 17 Jan 2008 09:57:57 +0000 Subject: [PATCH] * src/DataViews/_RelationView.py: isue #1605, not twice in same family 2008-01-17 Benny Malengier svn: r9863 --- ChangeLog | 3 +++ src/DataViews/RelationView.py | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 84ba62ff9..e07032bd2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2008-01-17 Benny Malengier + * src/DataViews/_RelationView.py: isue #1605, not twice in same family + 2008-01-17 Benny Malengier * src/DataViews/PersonView.py: issue 1451, double click to expand nodes diff --git a/src/DataViews/RelationView.py b/src/DataViews/RelationView.py index 59c190bcc..9f493de8d 100644 --- a/src/DataViews/RelationView.py +++ b/src/DataViews/RelationView.py @@ -1261,7 +1261,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()