From b1c1466a1549f5e7b48b57f717ac51433f3f0cf6 Mon Sep 17 00:00:00 2001 From: Vassilii Khachaturov Date: Sat, 14 Dec 2013 17:57:47 +0200 Subject: [PATCH] 7229: change active person upon a bookmark select Reapply my fix [88d2a2] from gramps34. --- gramps/plugins/view/pedigreeview.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gramps/plugins/view/pedigreeview.py b/gramps/plugins/view/pedigreeview.py index 9a4f75f7b..e89af93d5 100644 --- a/gramps/plugins/view/pedigreeview.py +++ b/gramps/plugins/view/pedigreeview.py @@ -748,6 +748,7 @@ class PedigreeView(NavigationView): if handle: person = self.dbstate.db.get_person_from_handle(handle) if person: + self.change_active(handle) self.rebuild_trees(handle) else: self.rebuild_trees(None)