You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-plugins/vdr-zaphistory/files/vdr-zaphistory-0.9.6-fix-cr...

16 lines
560 B

diff -Naur zaphistory-0.9.6.orig/zaphistoryosd.c zaphistory-0.9.6/zaphistoryosd.c
--- zaphistory-0.9.6.orig/zaphistoryosd.c 2013-09-15 15:22:41.000000000 +0200
+++ zaphistory-0.9.6/zaphistoryosd.c 2013-09-15 15:24:42.000000000 +0200
@@ -217,6 +217,11 @@
return AddSubMenu( new cMenuEvent(schedule->GetEventAround(time(NULL)) ) );
+ const cEvent *event = schedule->GetEventAround(time(NULL));
+ if (event)
+ return AddSubMenu( new cMenuEvent(event) );
+ else
+ return osUnknown;
}
eOSState cMenuZappedChannels::ProcessKey(eKeys Key)