summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2013-07-19 15:34:52 +0200
committerlouis <louis.braun@gmx.de>2013-07-19 15:34:52 +0200
commitbd9e0c62f3c6055a5aecb5bdb77f418f580ddbf9 (patch)
tree860f76f7c69e2f9232299639ee50f4faadff1d91
parent00a2d7bd9ae6e46cae134d45823290c7ea6fec7f (diff)
downloadvdr-plugin-tvguide-bd9e0c62f3c6055a5aecb5bdb77f418f580ddbf9.tar.gz
vdr-plugin-tvguide-bd9e0c62f3c6055a5aecb5bdb77f418f580ddbf9.tar.bz2
blue button also available in detail view
-rw-r--r--HISTORY1
-rw-r--r--tvguideosd.c5
2 files changed, 6 insertions, 0 deletions
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) {