Minor code changes

This commit is contained in:
ClemensFischer 2023-08-13 07:52:11 +02:00
parent c6f7b2d665
commit b91faba9e7
3 changed files with 5 additions and 5 deletions

View file

@ -59,7 +59,7 @@ namespace MapControl
public static readonly DependencyProperty LoadingProgressProperty = DependencyProperty.Register(
nameof(LoadingProgress), typeof(double), typeof(MapTileLayerBase), new PropertyMetadata(1d));
private readonly IProgress<double> loadingProgress;
private readonly Progress<double> loadingProgress;
private readonly DispatcherTimer updateTimer;
private MapBase parentMap;