From 02b1fba7426d98d106a62d21615f55ae12661beb Mon Sep 17 00:00:00 2001 From: louis Date: Wed, 15 Jan 2014 18:25:37 +0100 Subject: Display baseline for current time --- config.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'config.c') diff --git a/config.c b/config.c index 885693e..6079382 100644 --- a/config.c +++ b/config.c @@ -12,6 +12,7 @@ cTvguideConfig::cTvguideConfig() { displayTime = 160; displayStatusHeader = 1; displayChannelGroups = 1; + displayTimeBase = 1; headerHeightPercent = 20; channelGroupsPercent = 5; epgViewBorder = 50; @@ -216,6 +217,7 @@ bool cTvguideConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "showTimeInGrid") == 0) showTimeInGrid = atoi(Value); else if (strcmp(Name, "displayStatusHeader") == 0) displayStatusHeader = atoi(Value); else if (strcmp(Name, "displayChannelGroups") == 0) displayChannelGroups = atoi(Value); + else if (strcmp(Name, "displayTimeBase") == 0) displayTimeBase = atoi(Value); else if (strcmp(Name, "headerHeightPercent") == 0) headerHeightPercent = atoi(Value); else if (strcmp(Name, "channelGroupsPercent") == 0) channelGroupsPercent = atoi(Value); else if (strcmp(Name, "epgViewBorder") == 0) epgViewBorder = atoi(Value); -- cgit v1.2.3