diff --git a/ChangeLog b/ChangeLog index f1be5cae1..559285418 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-04-09 Don Allingham + * src/FamilyView.py: ignore None family types. This should never + occur, but we want to be safe. + 2005-04-09 Alex Roitman * src/po/template.po: Update translation template. diff --git a/src/FamilyView.py b/src/FamilyView.py index 2a116303d..99baa5f8b 100644 --- a/src/FamilyView.py +++ b/src/FamilyView.py @@ -1069,8 +1069,12 @@ class FamilyView: selection = tree.get_selection() family_list = person.get_parent_family_handle_list() + count = 0 for (f,mrel,frel) in family_list: fam = self.parent.db.get_family_from_handle(f) + if not fam: + continue + count += 1 father_handle = fam.get_father_handle() mother_handle = fam.get_mother_handle() f = self.parent.db.get_person_from_handle(father_handle) @@ -1086,7 +1090,7 @@ class FamilyView: sel = node v = "%s\n%s" % (father,mother) model.set(node,0,v) - if len(family_list) > 1: + if count > 1: selection.set_mode(gtk.SELECTION_SINGLE) selection.select_iter(sel) else: