diff options
author | Fabiano FidĂȘncio <fabiano@fidencio.org> | 2012-10-26 08:36:53 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-10-26 08:36:53 +0800 |
commit | e96ff89249e2f393e5b2adbe7468aab03ea63fbc (patch) | |
tree | 3a43013d004d95e7e2474d84b190d735efd5690d /widgets | |
parent | aded0858c49c3b729564a35427e3affb514fffb9 (diff) | |
download | gsoc2013-evolution-e96ff89249e2f393e5b2adbe7468aab03ea63fbc.tar.gz gsoc2013-evolution-e96ff89249e2f393e5b2adbe7468aab03ea63fbc.tar.zst gsoc2013-evolution-e96ff89249e2f393e5b2adbe7468aab03ea63fbc.zip |
Bug 627244 - Bold days in "Select Date" dialog not updated when changing month
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/e-calendar-item.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/widgets/misc/e-calendar-item.c b/widgets/misc/e-calendar-item.c index eef63a02f7..34f1696c5b 100644 --- a/widgets/misc/e-calendar-item.c +++ b/widgets/misc/e-calendar-item.c @@ -3316,8 +3316,12 @@ e_calendar_item_set_selection_if_emission (ECalendarItem *calitem, calitem->selection_from_full_week = FALSE; } - if (need_update) + if (need_update) { + g_signal_emit ( + calitem, + e_calendar_item_signals[DATE_RANGE_CHANGED], 0); gnome_canvas_item_request_update (GNOME_CANVAS_ITEM (calitem)); + } } void |