diff options
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -10,8 +10,8 @@ cTVGuideConfig::cTVGuideConfig() { showTimeInGrid = 1; channelCols = 5; channelRows = 10; - displayTime = 160; - displayHorizontalTime = 160; + displayTime = 180; + displayHorizontalTime = 180; displayStatusHeader = 1; displayChannelGroups = 1; displayTimeBase = 1; @@ -28,7 +28,9 @@ cTVGuideConfig::cTVGuideConfig() { footerHeightPercent = 7; stepMinutes = 30; bigStepHours = 3; + bigStepHoursHorizontal = 3; hugeStepHours = 24; + hugeStepHoursHorizontal = 24; channelJumpMode = eNumJump; jumpChannels = 0; blueKeyMode = 2; @@ -269,7 +271,9 @@ bool cTVGuideConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "logoWidthRatio") == 0) logoWidthRatio = atoi(Value); else if (strcmp(Name, "logoHeightRatio") == 0) logoHeightRatio = atoi(Value); else if (strcmp(Name, "bigStepHours") == 0) bigStepHours = atoi(Value); + else if (strcmp(Name, "bigStepHoursHorizontal") == 0) bigStepHoursHorizontal = atoi(Value); else if (strcmp(Name, "hugeStepHours") == 0) hugeStepHours = atoi(Value); + else if (strcmp(Name, "hugeStepHoursHorizontal") == 0) hugeStepHoursHorizontal = atoi(Value); else if (strcmp(Name, "channelJumpMode") == 0) channelJumpMode = atoi(Value); else if (strcmp(Name, "blueKeyMode") == 0) blueKeyMode = atoi(Value); else if (strcmp(Name, "numkeyMode") == 0) numkeyMode = atoi(Value); |