diff options
Diffstat (limited to 'calendar/gui/e-week-view.c')
-rw-r--r-- | calendar/gui/e-week-view.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c index 68997cc5c1..6c3157da5e 100644 --- a/calendar/gui/e-week-view.c +++ b/calendar/gui/e-week-view.c @@ -1828,8 +1828,9 @@ set_text_as_bold (EWeekViewEvent *event, EWeekViewEventSpan *span) } } - /* The attendee has not yet accepted the meeting, display the summary as bolded */ - if (at && (at->status == ICAL_PARTSTAT_NEEDSACTION)) { + /* The attendee has not yet accepted the meeting, display the summary as bolded. + If the attendee is not present, it might have come through a mailing list*/ + if (!at || (at->status == ICAL_PARTSTAT_NEEDSACTION)) { gnome_canvas_item_set (span->text_item, "bold", TRUE, NULL); } |