diff options
author | louis <louis.braun@gmx.de> | 2013-01-26 14:28:10 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-01-26 14:28:10 +0100 |
commit | 7cfa2ba6615ef9c094b6fbe9ee200794996e8cdc (patch) | |
tree | dee529d45c82c80d7cb1b623218300ff1d1d8e73 /config.c | |
parent | 3e5815663163a7d982ed640e456fc46a4ea6eed7 (diff) | |
download | skin-nopacity-7cfa2ba6615ef9c094b6fbe9ee200794996e8cdc.tar.gz skin-nopacity-7cfa2ba6615ef9c094b6fbe9ee200794996e8cdc.tar.bz2 |
Added display of Timer Conflicts with epgsearch in Main Menu
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -68,7 +68,8 @@ cNopacityConfig::cNopacityConfig() { menuInfoScrollSpeed = 2; menuWidthRightItems = 12; showDiscUsage = 1; - showTimers = 1; + showTimers = 1; + checkTimerConflict = 1; headerHeight = 7; footerHeight = 7; numDefaultMenuItems = 16; @@ -224,6 +225,7 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "menuHeightInfoWindow") == 0) menuHeightInfoWindow = atoi(Value); else if (strcmp(Name, "showDiscUsage") == 0) showDiscUsage = atoi(Value); else if (strcmp(Name, "showTimers") == 0) showTimers = atoi(Value); + else if (strcmp(Name, "checkTimerConflict") == 0) checkTimerConflict = atoi(Value); else if (strcmp(Name, "headerHeight") == 0) headerHeight = atoi(Value); else if (strcmp(Name, "footerHeight") == 0) footerHeight = atoi(Value); else if (strcmp(Name, "numDefaultMenuItems") == 0) numDefaultMenuItems = atoi(Value); |