diff options
author | Johann Friedrichs <johann.friedrichs@web.de> | 2021-05-22 23:36:12 +0200 |
---|---|---|
committer | Johann Friedrichs <johann.friedrichs@web.de> | 2021-05-22 23:36:12 +0200 |
commit | 94c06d9af813483be5ab7708fe81e5fab6e3a7e8 (patch) | |
tree | 96170c32533b80be7ab29181afe1fb46779dc9cf /menu_searchresults.c | |
parent | 43d7ff0fab23ce678a47a9b2ed3431515beeed25 (diff) | |
download | vdr-plugin-epgsearch-94c06d9af813483be5ab7708fe81e5fab6e3a7e8.tar.gz vdr-plugin-epgsearch-94c06d9af813483be5ab7708fe81e5fab6e3a7e8.tar.bz2 |
Fix for VDR-2.5.4
Diffstat (limited to 'menu_searchresults.c')
-rw-r--r-- | menu_searchresults.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/menu_searchresults.c b/menu_searchresults.c index d4d836c..2bcf8d1 100644 --- a/menu_searchresults.c +++ b/menu_searchresults.c @@ -181,7 +181,7 @@ void cMenuSearchResultsItem::SetMenuItem(cSkinDisplayMenu *DisplayMenu, int Inde const cChannel *channel = event ? Channels->GetByChannelID(event->ChannelID(), true, true) : NULL; if (!event) DisplayMenu->SetItem(Text(), Index, Current, Selectable); - else if (!DisplayMenu->SetItemEvent(event, Index, Current, Selectable, channel, true, timerMatch)) + else if (!DisplayMenu->SetItemEvent(event, Index, Current, Selectable, channel, true, timerMatch, timerActive)) DisplayMenu->SetItem(Text(), Index, Current, Selectable); } |