diff --git a/ChangeLog b/ChangeLog index ef45206dd..44ca6246a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-09-02 Tim Waugh + * src/gramps_main.py: Fixed start-up view when family view style + is the default. + 2003-09-01 Don Allingham * src/docgen/OpenOfficeDoc.py: Fix styles * src/docgen/PSDrawDoc.py: Change from Text/DrawDoc to BaseDoc diff --git a/src/gramps_main.py b/src/gramps_main.py index 473889c49..ab69df1ad 100755 --- a/src/gramps_main.py +++ b/src/gramps_main.py @@ -469,7 +469,7 @@ class Gramps: if GrampsCfg.defaultview == 0: self.views.set_current_page(0) else: - self.views.set_current_page(1) + self.views.set_current_page(2) self.topWindow.show()