diff options
Diffstat (limited to 'tvguideosd.c')
-rw-r--r-- | tvguideosd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tvguideosd.c b/tvguideosd.c index ba2d606..3a7f7e1 100644 --- a/tvguideosd.c +++ b/tvguideosd.c @@ -638,19 +638,19 @@ void cTvGuideOsd::processNumKey(int numKey) { void cTvGuideOsd::TimeJump(int mode) { switch (mode) { case 1: { - timeManager->DelStep(config.bigStepHours * 60); + timeManager->DelStep(((config.displayMode == eVertical) ? config.bigStepHours : config.bigStepHoursHorizontal) * 60); } break; case 3: { - timeManager->AddStep(config.bigStepHours * 60); + timeManager->AddStep(((config.displayMode == eVertical) ? config.bigStepHours : config.bigStepHoursHorizontal) * 60); } break; case 4: { - timeManager->DelStep(config.hugeStepHours * 60); + timeManager->DelStep(((config.displayMode == eVertical) ? config.hugeStepHours : config.hugeStepHoursHorizontal) * 60); } break; case 6: { - timeManager->AddStep(config.hugeStepHours * 60); + timeManager->AddStep(((config.displayMode == eVertical) ? config.hugeStepHours : config.hugeStepHoursHorizontal) * 60); } break; case 7: { |