diff options
author | louis <louis.braun@gmx.de> | 2014-05-11 09:00:21 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2014-05-11 09:00:21 +0200 |
commit | b1d2acff559c3cdc669254fa85e9279acdcb12dc (patch) | |
tree | ebcc682783e6de11c7b779e1efce4bb6fb4ae3e6 /config.c | |
parent | 490beed385054354bba92d0ffbd68621f79c9630 (diff) | |
download | vdr-plugin-tvguide-b1d2acff559c3cdc669254fa85e9279acdcb12dc.tar.gz vdr-plugin-tvguide-b1d2acff559c3cdc669254fa85e9279acdcb12dc.tar.bz2 |
Version 1.2.2 scraper2vdr support
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -44,6 +44,7 @@ cTvguideConfig::cTvguideConfig() { numAdditionalEPGPictures = 9;
epgImageWidthLarge = 525;
epgImageHeightLarge = 400;
+ detailedViewScrollStep = 5;
instRecFolderMode = eFolderRoot;
instRecFixedFolder = "";
favWhatsOnNow = 1;
@@ -272,6 +273,7 @@ bool cTvguideConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "numAdditionalEPGPictures") == 0) numAdditionalEPGPictures = atoi(Value);
else if (strcmp(Name, "epgImageWidthLarge") == 0) epgImageWidthLarge = atoi(Value);
else if (strcmp(Name, "epgImageHeightLarge") == 0) epgImageHeightLarge = atoi(Value);
+ else if (strcmp(Name, "detailedViewScrollStep") == 0) detailedViewScrollStep = atoi(Value);
else if (strcmp(Name, "timeLineWidthPercent") == 0) timeLineWidthPercent = atoi(Value);
else if (strcmp(Name, "timeLineHeightPercent") == 0) timeLineHeightPercent = atoi(Value);
else if (strcmp(Name, "displayChannelName") == 0) displayChannelName = atoi(Value);
|