From cef3994097497dec1145d186950bbd7f651393c5 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Mon, 31 Aug 2009 14:50:39 -0400 Subject: Bug 593613 - Doesn't differentiate an appointment and meeting button click --- modules/calendar/e-cal-shell-backend.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/calendar/e-cal-shell-backend.c b/modules/calendar/e-cal-shell-backend.c index 6511d0e453..bb59356dae 100644 --- a/modules/calendar/e-cal-shell-backend.c +++ b/modules/calendar/e-cal-shell-backend.c @@ -341,6 +341,7 @@ cal_shell_backend_event_new_cb (ECal *cal, editor = event_editor_new (cal, shell, flags); comp = cal_comp_event_new_with_current_time (cal, FALSE); + e_cal_component_commit_sequence (comp); comp_editor_edit_comp (editor, comp); gtk_window_present (GTK_WINDOW (editor)); @@ -367,6 +368,7 @@ cal_shell_backend_event_all_day_new_cb (ECal *cal, editor = event_editor_new (cal, shell, flags); comp = cal_comp_event_new_with_current_time (cal, TRUE); + e_cal_component_commit_sequence (comp); comp_editor_edit_comp (editor, comp); gtk_window_present (GTK_WINDOW (editor)); @@ -394,6 +396,7 @@ cal_shell_backend_event_meeting_new_cb (ECal *cal, editor = event_editor_new (cal, shell, flags); comp = cal_comp_event_new_with_current_time (cal, FALSE); + e_cal_component_commit_sequence (comp); comp_editor_edit_comp (editor, comp); gtk_window_present (GTK_WINDOW (editor)); -- cgit