diff options
author | JP Rosevear <jpr@novell.com> | 2004-09-09 01:34:46 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-09-09 01:34:46 +0800 |
commit | 247f5598243bd7f9fd71bcac4b0955c444026c8e (patch) | |
tree | fda1f43cd83cff9ba1872adaad4d72a55ca576fd | |
parent | c0bb83dcffdc894d0e03547cb2034cfd71b73b07 (diff) | |
download | gsoc2013-evolution-247f5598243bd7f9fd71bcac4b0955c444026c8e.tar gsoc2013-evolution-247f5598243bd7f9fd71bcac4b0955c444026c8e.tar.gz gsoc2013-evolution-247f5598243bd7f9fd71bcac4b0955c444026c8e.tar.bz2 gsoc2013-evolution-247f5598243bd7f9fd71bcac4b0955c444026c8e.tar.lz gsoc2013-evolution-247f5598243bd7f9fd71bcac4b0955c444026c8e.tar.xz gsoc2013-evolution-247f5598243bd7f9fd71bcac4b0955c444026c8e.tar.zst gsoc2013-evolution-247f5598243bd7f9fd71bcac4b0955c444026c8e.zip |
Fixes #62728
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
svn path=/trunk/; revision=27187
-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 |