summaryrefslogtreecommitdiff
path: root/footer.c
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2013-06-01 11:08:17 +0200
committerlouis <louis.braun@gmx.de>2013-06-01 11:08:17 +0200
commit10c1a1d8cec7772a2e8975bc8a7c580ecdd19955 (patch)
tree95a2a29abcc52bca8b2bc1a69cd74d6a3ebfcf26 /footer.c
parentdaac1abd7dc229f4f8ce8b727658fe18a191083a (diff)
downloadvdr-plugin-tvguide-10c1a1d8cec7772a2e8975bc8a7c580ecdd19955.tar.gz
vdr-plugin-tvguide-10c1a1d8cec7772a2e8975bc8a7c580ecdd19955.tar.bz2
Added setup option to switch functionality of keys Blue and OK
Diffstat (limited to 'footer.c')
-rw-r--r--footer.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/footer.c b/footer.c
index cbda6f8..4c26336 100644
--- a/footer.c
+++ b/footer.c
@@ -63,7 +63,11 @@ void cFooter::drawYellowButton(const char *text) {
}
void cFooter::drawBlueButton() {
- cString text(tr("Switch to Channel"));
+ cString text;
+ if (tvguideConfig.blueKeyMode == 0)
+ text = tr("Switch to Channel");
+ else if (tvguideConfig.blueKeyMode == 1)
+ text = tr("Detailed EPG");
DrawButton(*text, theme.Color(clrButtonBlue), theme.Color(clrButtonBlueBorder), 3);
}