From 3c20e4eeef5098ba17cd4cce4919b2c21fba7871 Mon Sep 17 00:00:00 2001 From: SNoiraud Date: Sun, 31 Jan 2016 11:31:41 +0100 Subject: [PATCH] 6873 : Children gramplet in Family view does not get updated when a birth/death events are added to a child --- gramps/plugins/gramplet/children.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gramps/plugins/gramplet/children.py b/gramps/plugins/gramplet/children.py index 31daf7101..1abd8d5ab 100644 --- a/gramps/plugins/gramplet/children.py +++ b/gramps/plugins/gramplet/children.py @@ -189,6 +189,8 @@ class FamilyChildren(Children): def db_changed(self): self.dbstate.db.connect('family-update', self.update) self.connect_signal('Family', self.update) + self.dbstate.db.connect('person-update', self.update) + self.connect_signal('Person', self.update) def main(self): active_handle = self.get_active('Family')