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 +++++++++++ calendar/gui/tasks-component.c | 11 +++++++++++ 2 files changed, 22 insertions(+) (limited to 'calendar/gui') 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) { diff --git a/calendar/gui/tasks-component.c b/calendar/gui/tasks-component.c index 1cb4dabef6..74ef16bd61 100644 --- a/calendar/gui/tasks-component.c +++ b/calendar/gui/tasks-component.c @@ -196,6 +196,17 @@ ensure_sources (TasksComponent *component) ESource *source = e_source_new (_("Personal"), PERSONAL_RELATIVE_URI); e_source_group_add_source (on_this_computer, source, -1); + if (!calendar_config_get_primary_tasks () && !calendar_config_get_tasks_selected ()) { + GSList selected; + + calendar_config_set_primary_tasks (e_source_peek_uid (source)); + + selected.data = (gpointer)e_source_peek_uid (source); + selected.next = NULL; + calendar_config_set_tasks_selected (&selected); + } + + e_source_set_color (source, 0xBECEDD); personal_source = source; } -- cgit v1.2.3