diff options
author | louis <louis.braun@gmx.de> | 2013-05-26 17:44:04 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-05-26 17:44:04 +0200 |
commit | b3b50abd736da0199297cab5d080055ed55c05bd (patch) | |
tree | a5d7815286725cc777b7d19062b1e9518a79b739 /config.c | |
parent | 6a0447e7a8506659c8a211594c8632d4d0aafd6e (diff) | |
download | vdr-plugin-tvguide-b3b50abd736da0199297cab5d080055ed55c05bd.tar.gz vdr-plugin-tvguide-b3b50abd736da0199297cab5d080055ed55c05bd.tar.bz2 |
Displaying reruns in detailed EPG View
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -89,6 +89,9 @@ cTvguideConfig::cTvguideConfig() { themeIndex = 4;
useBlending = 2;
roundedCorners = 0;
+ displayRerunsDetailEPGView = 1;
+ numReruns = 5;
+ useSubtitleRerun = 1;
}
cTvguideConfig::~cTvguideConfig() {
@@ -247,6 +250,9 @@ bool cTvguideConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "FontGridHorizontalSmallDelta") == 0) FontGridHorizontalSmallDelta = atoi(Value);
else if (strcmp(Name, "FontTimeLineDateHorizontalDelta") == 0) FontTimeLineDateHorizontalDelta = atoi(Value);
else if (strcmp(Name, "FontTimeLineTimeHorizontalDelta") == 0) FontTimeLineTimeHorizontalDelta = 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 return false;
return true;
}
|