diff options
author | louis <louis.braun@gmx.de> | 2013-06-01 11:08:17 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-06-01 11:08:17 +0200 |
commit | 10c1a1d8cec7772a2e8975bc8a7c580ecdd19955 (patch) | |
tree | 95a2a29abcc52bca8b2bc1a69cd74d6a3ebfcf26 /footer.c | |
parent | daac1abd7dc229f4f8ce8b727658fe18a191083a (diff) | |
download | vdr-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.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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);
}
|