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

Fixed cache issues

This commit is contained in:
2016-09-12 02:01:13 +02:00
parent ebf3c3bc14
commit 058a09a426
2 changed files with 6 additions and 0 deletions

View File

@ -121,6 +121,7 @@ void ScaleItem::setZoom(int z, qreal lat)
_lat = lat;
computeScale();
updateBoundingRect();
update();
}
void ScaleItem::setZoom(int z)
@ -129,6 +130,7 @@ void ScaleItem::setZoom(int z)
_zoom = z;
computeScale();
updateBoundingRect();
update();
}
void ScaleItem::setUnits(enum Units units)
@ -137,4 +139,5 @@ void ScaleItem::setUnits(enum Units units)
_units = units;
computeScale();
updateBoundingRect();
update();
}