We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5676f1c commit 8dcf076Copy full SHA for 8dcf076
src/Uno.UWP/Devices/Geolocation/Geolocator.iOSmacOS.cs
@@ -51,15 +51,15 @@ public double MovementThreshold
51
{
52
if (NativeDispatcher.Main.HasThreadAccess)
53
54
- _locationManager.DistanceFilter = value;
+ _locationManager.DistanceFilter = _movementThreshold;
55
}
56
else
57
58
NativeDispatcher.Main.Enqueue(() =>
59
60
if (_locationManager != null)
61
62
63
64
}, NativeDispatcherPriority.Normal);
65
0 commit comments