diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/e-tasks.c | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 17074e8c0c..e0adf45964 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,12 @@ 2007-11-05 Milan Crha <mcrha@redhat.com> + ** Fix for bug #491345 + + * gui/e-tasks.c: (config_hide_completed_tasks_changed_cb): + Also change default filter for tasks, to let this work without restart. + +2007-11-05 Milan Crha <mcrha@redhat.com> + ** Fix for bug #353780 * gui/dialogs/comp-editor.h: (comp_editor_get_current_comp): diff --git a/calendar/gui/e-tasks.c b/calendar/gui/e-tasks.c index 44e417b5bb..a2faca60f4 100644 --- a/calendar/gui/e-tasks.c +++ b/calendar/gui/e-tasks.c @@ -340,6 +340,7 @@ static void config_hide_completed_tasks_changed_cb (GConfClient *client, guint id, GConfEntry *entry, gpointer data) { process_completed_tasks (data, TRUE); + update_view (data); } static void |