mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 16:18:42 +00:00
Merge branch 'master' of https://github.com/GoldenCheetah/GoldenCheetah
This commit is contained in:
@@ -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) );
|
||||
|
||||
@@ -898,7 +898,7 @@ EditMetricDetailDialog::applyClicked()
|
||||
metricDetail->curveStyle = styleMap[curveStyle->currentIndex()];
|
||||
metricDetail->symbolStyle = symbolMap[curveSymbol->currentIndex()];
|
||||
metricDetail->penColor = penColor;
|
||||
metricDetail->fillCurve = fillCurve;
|
||||
metricDetail->fillCurve = fillCurve->isChecked();
|
||||
metricDetail->uname = userName->text();
|
||||
metricDetail->uunits = userUnits->text();
|
||||
metricDetail->stack = stack->isChecked();
|
||||
|
||||
Reference in New Issue
Block a user