diff options
author | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2014-03-27 21:45:09 +0100 |
---|---|---|
committer | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2014-03-27 21:45:09 +0100 |
commit | 686836f0fc23838878da872b0f1eab258a6271e7 (patch) | |
tree | 5008d4fee42e60e687ca66f498ecf16b92a4f4c9 /config.c | |
parent | a821a54d6b8c5f844623cbabc7a26843dbadccdf (diff) | |
download | skin-flatplus-686836f0fc23838878da872b0f1eab258a6271e7.tar.gz skin-flatplus-686836f0fc23838878da872b0f1eab258a6271e7.tar.bz2 |
tvscraper support for displaychannel
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -54,6 +54,9 @@ cFlatConfig::cFlatConfig(void) { MenuItemRecordingShowFolderDate = 1; MenuItemParseTilde = 1; + TVScraperChanInfoShowPoster = 1; + TVScraperChanInfoPosterSize = 0.01; + decorBorderChannelByTheme = 1; decorBorderChannelTypeUser = 0; decorBorderChannelSizeUser = 0; @@ -199,6 +202,8 @@ bool cFlatConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "TopBarRecConflictsShow") == 0) TopBarRecConflictsShow = atoi(Value); else if (strcmp(Name, "TopBarRecConflictsHigh") == 0) TopBarRecConflictsHigh = atoi(Value); else if (strcmp(Name, "SignalQualityUseColors") == 0) SignalQualityUseColors = atoi(Value); + else if (strcmp(Name, "TVScraperChanInfoShowPoster") == 0) TVScraperChanInfoShowPoster = atoi(Value); + else if (strcmp(Name, "TVScraperChanInfoPosterSize") == 0) TVScraperChanInfoPosterSize = atod(Value); else return false; |