diff options
author | louis <louis.braun@gmx.de> | 2013-03-23 11:59:38 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-03-23 11:59:38 +0100 |
commit | f59b6092b1eb5aa6b76dede334b25903a2f2026a (patch) | |
tree | 952e435826f079308592d87de7d7e7c5384d80a1 /config.c | |
parent | 1079718362567290fd53d545710f750e83b26a00 (diff) | |
download | skin-nopacity-f59b6092b1eb5aa6b76dede334b25903a2f2026a.tar.gz skin-nopacity-f59b6092b1eb5aa6b76dede334b25903a2f2026a.tar.bz2 |
time display for current schedule in channel display configurable (elapsed / remaining)
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -25,6 +25,7 @@ cNopacityConfig::cNopacityConfig() { fontEPGSmallSize = 0; resolutionIconSize = 100; statusIconSize = 64; + progressCurrentSchedule = 0; //Display Replay replayHeight = 25; replayBorderVertical = 15; @@ -214,6 +215,7 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "fontEPGSmallSize") == 0) fontEPGSmallSize = atoi(Value); else if (strcmp(Name, "resolutionIconSize") == 0) resolutionIconSize = atoi(Value); else if (strcmp(Name, "statusIconSize") == 0) statusIconSize = atoi(Value); + else if (strcmp(Name, "progressCurrentSchedule") == 0) progressCurrentSchedule = atoi(Value); else if (strcmp(Name, "replayHeight") == 0) replayHeight = atoi(Value); else if (strcmp(Name, "replayBorderVertical") == 0) replayBorderVertical = atoi(Value); else if (strcmp(Name, "replayBorderBottom") == 0) replayBorderBottom = atoi(Value); |