From 2d0da3a34c6cb52d9bb3b81efb8c0c9874b8dcf7 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Wed, 10 Nov 2004 04:34:48 +0000 Subject: [PATCH] * src/gramps_main.py: fix goto_active_person svn: r3719 --- ChangeLog | 1 + src/gramps_main.py | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 531950c34..2aec3d83e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,5 @@ 2004-11-09 Don Allingham + * src/gramps_main.py: fix goto_active_person * src/DateParser.py: Handle month=12 in gregorian_valid 2004-11-09 Alex Roitman diff --git a/src/gramps_main.py b/src/gramps_main.py index c6ddd148c..b112ea0d9 100755 --- a/src/gramps_main.py +++ b/src/gramps_main.py @@ -922,8 +922,8 @@ class Gramps: home = self.db.get_default_person() if home: self.change_active_person(home) - self.goto_active_person() self.update_display(0) + self.goto_active_person() self.full_update() def full_update(self): @@ -1587,16 +1587,16 @@ class Gramps: person = self.db.get_person_from_handle(person_handle) try: self.change_active_person(person) - self.goto_active_person() self.update_display(0) + self.goto_active_person() except TypeError: WarningDialog(_("Could not go to a Person"), _("Either stale bookmark or broken history " "caused by IDs reorder.")) self.clear_history() self.change_active_person(old_person) - self.goto_active_person() self.update_display(0) + self.goto_active_person() def on_default_person_activate(self,obj): if self.active_person: