- Revision
- 11125
- Author
- jeffrey
- Date
- 2006-07-11 12:01:40 -0700 (Tue, 11 Jul 2006)
Log Message
- [alpha3 branch] Fix for bug 6213, allDay event created on wrong day, r=grant
Fixed by using effectiveStartTime and effectiveEndTime.
Fixed by using effectiveStartTime and effectiveEndTime.
Modified Paths
Diff
Modified: branches/0.7alpha3/chandler/parcels/osaf/framework/blocks/calendar/AllDayCanvas.py (11124 => 11125)
--- branches/0.7alpha3/chandler/parcels/osaf/framework/blocks/calendar/AllDayCanvas.py 2006-07-11 19:00:17 UTC (rev 11124) +++ branches/0.7alpha3/chandler/parcels/osaf/framework/blocks/calendar/AllDayCanvas.py 2006-07-11 19:01:40 UTC (rev 11125) @@ -414,10 +414,10 @@ newTime = self.blockItem.rangeStart - item.duration start = newTime - end = start + item.duration else: - start, end = item.startTime, item.endTime + start = item.effectiveStartTime + end = start + item.duration addCanvasItem(item, start, end) self.numEventRows = numEventRows
_______________________________________________ Commits mailing list [email protected] http://lists.osafoundation.org/mailman/listinfo/commits
