From f59b6092b1eb5aa6b76dede334b25903a2f2026a Mon Sep 17 00:00:00 2001 From: louis Date: Sat, 23 Mar 2013 11:59:38 +0100 Subject: time display for current schedule in channel display configurable (elapsed / remaining) --- config.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'config.c') diff --git a/config.c b/config.c index 9260fb2..8e91c17 100644 --- a/config.c +++ b/config.c @@ -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); -- cgit v1.2.3