aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-day-view.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2009-07-27 23:38:25 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-07-29 00:22:46 +0800
commite119ae2938fb1e3b41191fe958857c4b8f414a32 (patch)
tree5202aea6ce24ef54be14f700be148e9a3b9b9985 /calendar/gui/e-day-view.c
parentfe2f720c14d3f39ca6694f1b56b7f4e8121e732b (diff)
downloadgsoc2013-evolution-e119ae2938fb1e3b41191fe958857c4b8f414a32.tar
gsoc2013-evolution-e119ae2938fb1e3b41191fe958857c4b8f414a32.tar.gz
gsoc2013-evolution-e119ae2938fb1e3b41191fe958857c4b8f414a32.tar.bz2
gsoc2013-evolution-e119ae2938fb1e3b41191fe958857c4b8f414a32.tar.lz
gsoc2013-evolution-e119ae2938fb1e3b41191fe958857c4b8f414a32.tar.xz
gsoc2013-evolution-e119ae2938fb1e3b41191fe958857c4b8f414a32.tar.zst
gsoc2013-evolution-e119ae2938fb1e3b41191fe958857c4b8f414a32.zip
Bug #575581 - All Day Events Should Not Depend On Calendar Scrolling
Diffstat (limited to 'calendar/gui/e-day-view.c')
-rw-r--r--calendar/gui/e-day-view.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/calendar/gui/e-day-view.c b/calendar/gui/e-day-view.c
index c3533e629c..7e7e5f7624 100644
--- a/calendar/gui/e-day-view.c
+++ b/calendar/gui/e-day-view.c
@@ -6692,9 +6692,11 @@ e_day_view_get_long_event_position (EDayView *day_view,
}
*item_x = day_view->day_offsets[*start_day] + E_DAY_VIEW_BAR_WIDTH;
- *item_w = day_view->day_offsets[*end_day + 1] - *item_x
- - E_DAY_VIEW_GAP_WIDTH;
- *item_w = MAX (*item_w, 0);
+ if (day_view->days_shown == 1)
+ *item_w = day_view->top_canvas->allocation.width;
+ else
+ *item_w = day_view->day_offsets[*end_day + 1];
+ *item_w = MAX (*item_w - *item_x - E_DAY_VIEW_GAP_WIDTH, 0);
*item_y = (event->start_row_or_col) * day_view->top_row_height;
*item_h = day_view->top_row_height - E_DAY_VIEW_TOP_CANVAS_Y_GAP;
return TRUE;