mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-04-15 05:32:21 +00:00
@@ -985,7 +985,7 @@ AllPlot::setYMax()
|
||||
ymin = referencePlot->altCurve->minYValue();
|
||||
ymax = qMax(ymin + 100, 1.05 * referencePlot->altCurve->maxYValue());
|
||||
}
|
||||
ymin = ( qRound(ymin) / 100 ) * 100;
|
||||
ymin = (ymin < 0 ? -100 : 0) + ( qRound(ymin) / 100 ) * 100;
|
||||
|
||||
int axisHeight = qRound( plotLayout()->canvasRect().height() );
|
||||
QFontMetrics labelWidthMetric = QFontMetrics( QwtPlot::axisFont(yLeft) );
|
||||
|
||||
Reference in New Issue
Block a user