Description: TODO: Put a short summary on the line above and replace this paragraph with a longer explanation of this change. Complete the meta-information with other relevant fields (see below for details). To make it easier, the information below has been extracted from the changelog. Adjust it or drop it. . vdr-plugin-remotetimers (1.0.1-2yavdr1~precise) precise; urgency=medium . * automatic rebuild Author: yavdr package builder --- The information above should follow the Patch Tagging Guidelines, please checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here are templates for supplementary fields that you might want to add: Origin: , Bug: Bug-Debian: http://bugs.debian.org/ Bug-Ubuntu: https://launchpad.net/bugs/ Forwarded: Reviewed-By: Last-Update: --- vdr-plugin-remotetimers-1.0.1.orig/Makefile +++ vdr-plugin-remotetimers-1.0.1/Makefile @@ -51,6 +51,9 @@ INCLUDES += DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"' +# uncomment this to enable support for the graphtft plugin. +#DEFINES += -DUSE_GRAPHTFT + ### The object files (add further files here): OBJS = $(PLUGIN).o svdrp.o conflict.o menu.o menuitems.o setup.o moverec.o watcher.o --- vdr-plugin-remotetimers-1.0.1.orig/menu.h +++ vdr-plugin-remotetimers-1.0.1/menu.h --- vdr-plugin-remotetimers-1.0.1.orig/menu.c +++ vdr-plugin-remotetimers-1.0.1/menu.c @@ -877,6 +877,10 @@ void cMenuEvent::Display(void) { cOsdMenu::Display(); DisplayMenu()->SetEvent(event); +#ifdef USE_GRAPHTFT + cStatus::MsgOsdSetEvent(event); +#endif + if (event->Description()) cStatus::MsgOsdTextItem(event->Description()); }