diff --git a/HISTORY b/HISTORY index 9656a96..deb9d8b 100644 --- a/HISTORY +++ b/HISTORY @@ -55,3 +55,4 @@ VDR Plugin 'tvguide' Revision History - added possibility to choose folder for instant recording, possible folders are read from VDRs folders list - recording folder also choosable for series timers +- blue button also available in detail view diff --git a/tvguideosd.c b/tvguideosd.c index 0b27083..dd701d0 100644 --- a/tvguideosd.c +++ b/tvguideosd.c @@ -659,6 +659,11 @@ eOSState cTvGuideOsd::ProcessKey(eKeys Key) { detailView = NULL; detailViewActive = false; processKeyRed(); + } else if (((Key & ~k_Repeat) == kBlue) && (tvguideConfig.blueKeyMode == 0)) { + delete detailView; + detailView = NULL; + detailViewActive = false; + processKeyBlue(); } else { state = detailView->ProcessKey(Key); if (state == osEnd) {