From 0d463a5ea2710fc71c238e5575551477b801514f 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 --- gramps2/ChangeLog | 4 ++++ gramps2/src/gramps_main.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index ef45206dd..44ca6246a 100644 --- a/gramps2/ChangeLog +++ b/gramps2/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/gramps2/src/gramps_main.py b/gramps2/src/gramps_main.py index 473889c49..ab69df1ad 100755 --- a/gramps2/src/gramps_main.py +++ b/gramps2/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()