From 38f4f2cd20d68010f15e5ace7a895903211a10f2 Mon Sep 17 00:00:00 2001 From: Rodney Dawes Date: Thu, 24 Jun 2004 17:22:40 +0000 Subject: Add a call to e_source_selector_set_select_new here so that we can select 2004-06-24 Rodney Dawes * gui/calendar-component.c (create_component_view): * gui/tasks-component.c (create_component_view): Add a call to e_source_selector_set_select_new here so that we can select new sources when we create them 2004-06-24 Rodney Dawes * e-source-selector.[ch]: Add new "select_new" property to private structure of the ESourceSelector (rebuild_cb): Add code to select the new source, and cause the selection_changed signal to get emitted, if we select new sources (init): Don't select new sources by default (e_source_selector_set_select_new): Add function to set whether or not we want to select new sources when we add them svn path=/trunk/; revision=26498 --- calendar/gui/calendar-component.c | 1 + calendar/gui/tasks-component.c | 1 + 2 files changed, 2 insertions(+) (limited to 'calendar/gui') diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c index 857812f5c3..4bf64da90f 100644 --- a/calendar/gui/calendar-component.c +++ b/calendar/gui/calendar-component.c @@ -1032,6 +1032,7 @@ create_component_view (CalendarComponent *calendar_component) /* Create sidebar selector */ component_view->source_selector = e_source_selector_new (calendar_component->priv->source_list); + e_source_selector_set_select_new (component_view->source_selector, TRUE); g_signal_connect (component_view->source_selector, "drag-motion", G_CALLBACK (selector_tree_drag_motion), calendar_component); diff --git a/calendar/gui/tasks-component.c b/calendar/gui/tasks-component.c index 9f5edbcda0..e685977a5d 100644 --- a/calendar/gui/tasks-component.c +++ b/calendar/gui/tasks-component.c @@ -846,6 +846,7 @@ create_component_view (TasksComponent *tasks_component) /* Create sidebar selector */ component_view->source_selector = e_source_selector_new (tasks_component->priv->source_list); + e_source_selector_set_select_new (component_view->source_selector, TRUE); g_signal_connect (component_view->source_selector, "drag-motion", G_CALLBACK (selector_tree_drag_motion), tasks_component); -- cgit v1.2.3