From c090f32fa53222b3d57b4633ffcf551801e4b7b7 Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Mon, 21 Mar 2005 14:10:49 +0000 Subject: ensure the color and primary config are set on the personal source 2005-03-21 JP Rosevear * gui/tasks-component.c (ensure_sources): ensure the color and primary config are set on the personal source * gui/calendar-component.c (ensure_sources): ditto svn path=/trunk/; revision=29072 --- calendar/gui/calendar-component.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'calendar/gui/calendar-component.c') diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c index ea227f3211..55c4200115 100644 --- a/calendar/gui/calendar-component.c +++ b/calendar/gui/calendar-component.c @@ -216,6 +216,17 @@ ensure_sources (CalendarComponent *component) personal_source = e_source_new (_("Personal"), PERSONAL_RELATIVE_URI); e_source_group_add_source (on_this_computer, personal_source, -1); + if (!calendar_config_get_primary_calendar () && !calendar_config_get_calendars_selected ()) { + GSList selected; + + calendar_config_set_primary_calendar (e_source_peek_uid (personal_source)); + + selected.data = (gpointer)e_source_peek_uid (personal_source); + selected.next = NULL; + calendar_config_set_calendars_selected (&selected); + } + + e_source_set_color (personal_source, 0xBECEDD); } if (!on_the_web) { -- cgit