aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/gui/e-week-view.c2
2 files changed, 9 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index b605450e3b..668368ab15 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,10 @@
+2007-11-23 Milan Crha <mcrha@redhat.com>
+
+ ** Fix for bug #484603
+
+ * gui/e-week-view.c: (e_week_view_reshape_event_span):
+ Do not forget for organizer icon when counting used icons.
+
2007-11-19 Milan Crha <mcrha@redhat.com>
** Fix for bug #401337
diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c
index 6915ec1b7d..9d539cecba 100644
--- a/calendar/gui/e-week-view.c
+++ b/calendar/gui/e-week-view.c
@@ -2704,6 +2704,8 @@ e_week_view_reshape_event_span (EWeekView *week_view,
num_icons++;
if (e_cal_component_has_attachments (comp))
num_icons++;
+ if (e_cal_component_has_organizer (comp))
+ num_icons++;
if (event->different_timezone)
num_icons++;
num_icons += cal_comp_util_get_n_icons (comp);