mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Do not try to center if already on center
This makes the globe smoother while moving around same gps dive sites. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
1239056fb6
commit
94d05d1cb6
1 changed files with 4 additions and 0 deletions
|
@ -257,6 +257,10 @@ void GlobeGPS::centerOnDiveSite(struct dive_site *ds)
|
|||
qreal longitude = ds->longitude.udeg / 1000000.0;
|
||||
qreal latitude = ds->latitude.udeg / 1000000.0;
|
||||
|
||||
if(IS_FP_SAME(longitude, centerLongitude()) && IS_FP_SAME(latitude,centerLatitude())) {
|
||||
return;
|
||||
}
|
||||
|
||||
// if no zoom is set up, set the zoom as seen from 3km above
|
||||
// if we come back from a dive without GPS data, reset to the last zoom value
|
||||
// otherwise check to make sure we aren't still running an animation and then remember
|
||||
|
|
Loading…
Add table
Reference in a new issue