diff options
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/e-week-view.c | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 1945c8aee4..98a257b845 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2004-09-08 JP Rosevear <jpr@novell.com> + + Fixes #62728 + + * gui/e-week-view.c (e_week_view_set_week_start_day): trigger a + redraw when changing the start day + 2004-09-05 Chenthill Palanisamy <pchenthill@novell.com> * gui/e-calendar-table.c diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c index ee884db3de..cfb0f208f1 100644 --- a/calendar/gui/e-week-view.c +++ b/calendar/gui/e-week-view.c @@ -1863,6 +1863,9 @@ e_week_view_set_week_start_day (EWeekView *week_view, if (g_date_valid (&week_view->first_day_shown)) e_week_view_set_first_day_shown (week_view, &week_view->first_day_shown); + + gtk_widget_queue_draw (week_view->titles_canvas); + gtk_widget_queue_draw (week_view->main_canvas); } static gboolean |