From d5bee0d7751d338e09677a4694214efcb01402ef Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Tue, 2 Sep 2003 21:22:11 +0000 Subject: [PATCH] 2003-09-02 Tim Waugh * src/gramps_main.py: Fixed start-up view when family view style is the default. svn: r2082 --- ChangeLog | 4 ++++ src/gramps_main.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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()