mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Making sure the present event is displayed in the "Schedule" menu
This commit is contained in:
parent
6fef98aa97
commit
1601918327
4
menu.c
4
menu.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: menu.c 1.288 2004/02/21 15:26:47 kls Exp $
|
* $Id: menu.c 1.289 2004/02/21 15:40:35 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
@ -1371,7 +1371,7 @@ void cMenuSchedule::PrepareSchedule(cChannel *Channel)
|
|||||||
time_t now = time(NULL) - Setup.EPGLinger * 60;
|
time_t now = time(NULL) - Setup.EPGLinger * 60;
|
||||||
for (int a = 0; a < num; a++) {
|
for (int a = 0; a < num; a++) {
|
||||||
const cEvent *Event = Schedule->GetEventNumber(a);
|
const cEvent *Event = Schedule->GetEventNumber(a);
|
||||||
if (Event->StartTime() + Event->Duration() > now)
|
if (Event->StartTime() + Event->Duration() > now || Event == PresentEvent)
|
||||||
Add(new cMenuScheduleItem(Event), Event == PresentEvent);
|
Add(new cMenuScheduleItem(Event), Event == PresentEvent);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user