diff options
author | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2014-06-14 12:36:27 +0200 |
---|---|---|
committer | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2014-06-14 12:36:27 +0200 |
commit | 69d83281c43f10d34bf27cfda13686642d52f0ea (patch) | |
tree | 05e662e1ed11a3efe26779d6243686e7bfd84b16 /config.c | |
parent | cc0a0d8fb34ce67f16cacfeabba8f594be06a271 (diff) | |
download | skin-flatplus-69d83281c43f10d34bf27cfda13686642d52f0ea.tar.gz skin-flatplus-69d83281c43f10d34bf27cfda13686642d52f0ea.tar.bz2 |
add message color position option, add message icons
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -44,6 +44,8 @@ cFlatConfig::cFlatConfig(void) { TopBarFontSize = 0.05; MessageOffset = 50; + MessageColorPosition = 1; + MainMenuItemScale = 1.0; MenuChannelView = 1; @@ -223,6 +225,7 @@ bool cFlatConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "EpgRerunsShow") == 0) EpgRerunsShow = atoi(Value); else if (strcmp(Name, "TVScraperEPGInfoShowActors") == 0) TVScraperEPGInfoShowActors = atoi(Value); else if (strcmp(Name, "TVScraperRecInfoShowActors") == 0) TVScraperRecInfoShowActors = atoi(Value); + else if (strcmp(Name, "MessageColorPosition") == 0) MessageColorPosition = atoi(Value); else return false; |