mirror of
https://projects.vdr-developer.org/git/vdr-plugin-tvguide.git
synced 2023-10-05 13:01:48 +00:00
Added setup option to switch functionality of keys Blue and OK
This commit is contained in:
6
footer.c
6
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);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user