From b6c39145a2217420911674172dd837b78b0bcf71 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Wed, 21 Jan 2009 03:20:37 +0000 Subject: [PATCH] * Summary view - don't display a time for all day events --- webcit/calendar_view.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webcit/calendar_view.c b/webcit/calendar_view.c index 0af1842ec..323016ff3 100644 --- a/webcit/calendar_view.c +++ b/webcit/calendar_view.c @@ -1324,7 +1324,10 @@ void calendar_summary_view(void) { wprintf("\">"); } escputs((char *) icalproperty_get_comment(p)); - wprintf(" (%s)
\n", timestring); + if (!all_day_event) { + wprintf(" (%s)", timestring); + } + wprintf("
\n"); } } } -- 2.39.2