diff options
author | louis <louis.braun@gmx.de> | 2012-11-28 20:58:39 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2012-11-28 20:58:39 +0100 |
commit | 1121def63e1ec3bb56caa974d68c584070e64d68 (patch) | |
tree | 65471cbb0c74e3dfd4854f83370ab621b0fdd6a2 /config.c | |
parent | 81741f77745d190629f3d91c290ea7c15e0c75ba (diff) | |
download | skin-nopacity-1121def63e1ec3bb56caa974d68c584070e64d68.tar.gz skin-nopacity-1121def63e1ec3bb56caa974d68c584070e64d68.tar.bz2 |
Added feature to display reruns in detailed EPG view
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -53,6 +53,9 @@ cNopacityConfig::cNopacityConfig() { fontVolume = 0; //DisplayMenu scalePicture = 1; + displayRerunsDetailEPGView = 1; + numReruns = 3; + useSubtitleRerun = 1; menuFadeTime = 300; menuWidthNarrow = 30; menuWidthRightItems = 12; @@ -170,6 +173,9 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "fontVolume") == 0) fontVolume = atoi(Value); else if (strcmp(Name, "menuFadeTime") == 0) menuFadeTime = atoi(Value); else if (strcmp(Name, "scalePicture") == 0) scalePicture = atoi(Value); + else if (strcmp(Name, "displayRerunsDetailEPGView") == 0) displayRerunsDetailEPGView = atoi(Value); + else if (strcmp(Name, "numReruns") == 0) numReruns = atoi(Value); + else if (strcmp(Name, "useSubtitleRerun") == 0) useSubtitleRerun = atoi(Value); else if (strcmp(Name, "menuWidthNarrow") == 0) menuWidthNarrow = atoi(Value); else if (strcmp(Name, "menuWidthRightItems") == 0) menuWidthRightItems = atoi(Value); else if (strcmp(Name, "headerHeight") == 0) headerHeight = atoi(Value); |