From b7166467a29a9b7fa27dddf9daa962dd5f78bd26 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Fri, 24 May 2002 03:44:43 +0000 Subject: [PATCH] Build display table properly after reading in svn: r1002 --- gramps/src/GrampsParser.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gramps/src/GrampsParser.py b/gramps/src/GrampsParser.py index a51653e1a..efde2aeb2 100644 --- a/gramps/src/GrampsParser.py +++ b/gramps/src/GrampsParser.py @@ -554,6 +554,9 @@ class GrampsParser: def stop_people(self,tag): self.person = None + def stop_person(self,tag): + self.db.buildPersonDisplay(self.person.getId()) + def stop_description(self,tag): self.event.setDescription(u2l(tag)) @@ -756,7 +759,7 @@ class GrampsParser: "p" : (None, stop_ptag), "parentin" : (start_parentin,None), "people" : (start_people, stop_people), - "person" : (start_person, None), + "person" : (start_person, stop_person), "img" : (start_photo, stop_photo), "objref" : (start_objref, stop_objref), "object" : (start_object, stop_object),