Added setup option to switch functionality of keys Blue and OK

This commit is contained in:
louis
2013-06-01 11:08:17 +02:00
parent daac1abd7d
commit 10c1a1d8ce
9 changed files with 64 additions and 19 deletions

View File

@@ -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);
}