diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/gnome-cal.c | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 62a392a459..624347059f 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2005-02-23 JP Rosevear <jpr@novell.com> + + Fixes #70000 + + * gui/gnome-cal.c (gnome_calendar_goto_today): set the view type + to day view + 2005-02-23 Chenthill Palanisamy <pchenthill@novell.com> Fixes #72006 diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index 3a85a4a89f..3eb5ced0b1 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -1723,6 +1723,7 @@ gnome_calendar_goto_today (GnomeCalendar *gcal) g_return_if_fail (GNOME_IS_CALENDAR (gcal)); gnome_calendar_goto (gcal, time (NULL)); + gnome_calendar_set_view (gcal, GNOME_CAL_DAY_VIEW); focus_current_view (gcal); } |