diff --git a/ChangeLog b/ChangeLog index 04849e714..03a338794 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2004-08-19 Tim Waugh + * src/gramps_main.py (import_tool_callback): Set home person. + 2004-08-19 Don Allingham * src/ChooseParents.py: use get_family_from_handle instead of find_family_from_handle diff --git a/src/gramps_main.py b/src/gramps_main.py index b8af71db5..41307036a 100755 --- a/src/gramps_main.py +++ b/src/gramps_main.py @@ -930,6 +930,10 @@ class Gramps: self.import_tool_callback() def import_tool_callback(self): + home = self.db.get_default_person() + if home: + self.change_active_person(home) + self.update_display(0) self.full_update() def full_update(self):