Index: applications/editors/josm/plugins/livegps/src/livegps/LiveGpsLayer.java
===================================================================
--- applications/editors/josm/plugins/livegps/src/livegps/LiveGpsLayer.java	(revision 35583)
+++ applications/editors/josm/plugins/livegps/src/livegps/LiveGpsLayer.java	(revision 35975)
@@ -13,4 +13,5 @@
 import java.util.Map;
 
+import org.openstreetmap.josm.data.coor.ILatLon;
 import org.openstreetmap.josm.data.coor.LatLon;
 import org.openstreetmap.josm.data.gpx.GpxData;
@@ -64,5 +65,5 @@
     void setCurrentPosition(double lat, double lon) {
         LatLon thisPos = new LatLon(lat, lon);
-        if ((lastPos != null) && (thisPos.equalsEpsilon(lastPos)))
+        if (lastPos != null && thisPos.equalsEpsilon(lastPos, ILatLon.MAX_SERVER_PRECISION))
             // no change in position
             // maybe show a "paused" cursor or some such
