summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorkamel5 <vdr.kamel5 (at) gmx (dot) net>2020-02-17 14:15:44 +0100
committerkamel5 <vdr.kamel5 (at) gmx (dot) net>2020-02-17 16:05:43 +0100
commitb96f80024061d3d20581e4158ae30a5b6a8aa290 (patch)
tree2553cb8bf7ea8700469428cb538ad1e3ec9079c9 /config.c
parent5d9ed1439a8e46becf90fbd00189d655cb5efcfb (diff)
downloadvdr-plugin-tvguide-b96f80024061d3d20581e4158ae30a5b6a8aa290.tar.gz
vdr-plugin-tvguide-b96f80024061d3d20581e4158ae30a5b6a8aa290.tar.bz2
Add episode to manual timer
Diffstat (limited to 'config.c')
-rw-r--r--config.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/config.c b/config.c
index 71895aa..502e474 100644
--- a/config.c
+++ b/config.c
@@ -34,6 +34,7 @@ cTVGuideConfig::cTVGuideConfig() {
channelJumpMode = eNumJump;
jumpChannels = 0;
blueKeyMode = 2;
+ addSubtitleToTimer = 1;
closeOnSwitch = 1;
numkeyMode = 0;
useRemoteTimers = 0;
@@ -295,6 +296,7 @@ bool cTVGuideConfig::SetupParse(const char *Name, const char *Value) {
else if (strcmp(Name, "footerHeightPercent") == 0) footerHeightPercent = atoi(Value);
else if (strcmp(Name, "instRecFolderMode") == 0) instRecFolderMode = atoi(Value);
else if (strcmp(Name, "instRecFixedFolder") == 0) instRecFixedFolder = Value;
+ else if (strcmp(Name, "addSubtitleToTimer") == 0) addSubtitleToTimer = atoi(Value);
else if (strcmp(Name, "favWhatsOnNow") == 0) favWhatsOnNow = atoi(Value);
else if (strcmp(Name, "favWhatsOnNext") == 0) favWhatsOnNext = atoi(Value);
else if (strcmp(Name, "favUseTime1") == 0) favUseTime1 = atoi(Value);