summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorMartin Schirrmacher <vdr.skinflatplus@schirrmacher.eu>2014-06-14 12:36:27 +0200
committerMartin Schirrmacher <vdr.skinflatplus@schirrmacher.eu>2014-06-14 12:36:27 +0200
commit69d83281c43f10d34bf27cfda13686642d52f0ea (patch)
tree05e662e1ed11a3efe26779d6243686e7bfd84b16 /config.c
parentcc0a0d8fb34ce67f16cacfeabba8f594be06a271 (diff)
downloadskin-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.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/config.c b/config.c
index 0e581e2c..ccf7e6b7 100644
--- a/config.c
+++ b/config.c
@@ -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;