aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2010-11-02 16:42:36 +0800
committerMilan Crha <mcrha@redhat.com>2010-11-02 16:42:36 +0800
commit870ab18eb9a040b7b6a188ec48466b41a2ca383b (patch)
treea5a21bda672318adfb810f9b54740382a5209fab
parent7d20b8fd5fd28a90852c737f35cef7ba03a2c116 (diff)
downloadgsoc2013-evolution-870ab18eb9a040b7b6a188ec48466b41a2ca383b.tar
gsoc2013-evolution-870ab18eb9a040b7b6a188ec48466b41a2ca383b.tar.gz
gsoc2013-evolution-870ab18eb9a040b7b6a188ec48466b41a2ca383b.tar.bz2
gsoc2013-evolution-870ab18eb9a040b7b6a188ec48466b41a2ca383b.tar.lz
gsoc2013-evolution-870ab18eb9a040b7b6a188ec48466b41a2ca383b.tar.xz
gsoc2013-evolution-870ab18eb9a040b7b6a188ec48466b41a2ca383b.tar.zst
gsoc2013-evolution-870ab18eb9a040b7b6a188ec48466b41a2ca383b.zip
Bug #632941 - Calendar ignores preference "show/hide end times"
-rw-r--r--calendar/gui/e-week-view.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c
index c151ccbfa0..c964d1ebab 100644
--- a/calendar/gui/e-week-view.c
+++ b/calendar/gui/e-week-view.c
@@ -2080,7 +2080,7 @@ e_week_view_set_show_event_end_times (EWeekView *week_view,
{
g_return_if_fail (E_IS_WEEK_VIEW (week_view));
- if (week_view->show_event_end_times != show_event_end_times)
+ if (week_view->show_event_end_times == show_event_end_times)
return;
week_view->show_event_end_times = show_event_end_times;
@@ -2088,6 +2088,9 @@ e_week_view_set_show_event_end_times (EWeekView *week_view,
week_view->events_need_reshape = TRUE;
e_week_view_check_layout (week_view);
+ gtk_widget_queue_draw (week_view->titles_canvas);
+ gtk_widget_queue_draw (week_view->main_canvas);
+
g_object_notify (G_OBJECT (week_view), "show-event-end-times");
}