blue button also available in detail view

This commit is contained in:
louis 2013-07-19 15:34:52 +02:00
parent 00a2d7bd9a
commit bd9e0c62f3
2 changed files with 6 additions and 0 deletions

View File

@ -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

View File

@ -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) {