mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-04-15 05:32:21 +00:00
Small bug fix for lo and hi margins values.
This commit is contained in:
@@ -54,8 +54,8 @@ void LogTimeScaleEngine::autoScale(int maxNumSteps,
|
||||
qSwap(x1, x2);
|
||||
|
||||
QwtDoubleInterval interval(
|
||||
x1 / pow(10.0, lowerMargin()),
|
||||
x2 * pow(10.0, upperMargin())
|
||||
x1 / pow(10.0, loMargin()),
|
||||
x2 * pow(10.0, hiMargin())
|
||||
);
|
||||
|
||||
double logRef = 1.0;
|
||||
|
||||
Reference in New Issue
Block a user