mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 08:08:42 +00:00
Fixed altitude in .tcx files.
One-liner to correctly parse altitude in Garmin .tcx files.
This commit is contained in:
committed by
Sean Rhea
parent
570b2ffc73
commit
b86921d90c
@@ -85,7 +85,7 @@ TcxParser::endElement( const QString&, const QString&, const QString& qName)
|
||||
{
|
||||
cadence = buffer.toDouble();
|
||||
}
|
||||
else if (qName == "Altitude")
|
||||
else if (qName == "AltitudeMeters")
|
||||
{
|
||||
alt = buffer.toDouble();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user