You've already forked lazarus-ccr
tvplanit: Fix display of repeated all-day events in the dayview.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8406 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -386,7 +386,8 @@ begin
|
||||
// Cycle through the all day events and draw them appropriately
|
||||
for I2 := 0 to pred(ADEventsList.Count) do begin
|
||||
Event := ADEventsList[I2];
|
||||
if DateInRange(RenderDate + I, Event.StartTime, Event.EndTime, true) then
|
||||
if DateInRange(RenderDate + I, Event.StartTime, Event.EndTime, true) or
|
||||
FDayView.DataStore.Resource.Schedule.RepeatsOn(Event, RenderDate + I) then
|
||||
begin
|
||||
// See if the event began before the start of the range
|
||||
if (Event.StartTime < trunc(RenderDate)) then
|
||||
|
Reference in New Issue
Block a user