1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-07-22 14:54:24 +02:00

Rotate JPEG thumbnails acording to EXIF data

fixes #385
This commit is contained in:
2021-08-04 08:57:42 +02:00
parent 6e4cc406ab
commit 933f2c3837
40 changed files with 467 additions and 139 deletions

View File

@ -15,7 +15,7 @@ SpeedGraphItem::SpeedGraphItem(const Graph &graph, GraphType type, int width,
_mavg = graph.last().last().s() / movingTime;
}
QString SpeedGraphItem::info() const
ToolTip SpeedGraphItem::info() const
{
ToolTip tt;
qreal scale = (_units == Imperial) ? MS2MIH : (_units == Nautical)
@ -34,7 +34,7 @@ QString SpeedGraphItem::info() const
? avg() * scale : mavg() * scale, 'f', 1) + UNIT_SPACE + su);
tt.insert(tr("Pace"), pace + UNIT_SPACE + pu);
return tt.toString();
return tt;
}
void SpeedGraphItem::setTimeType(TimeType type)