diff --git a/MapControl/WPF/Tile.WPF.cs b/MapControl/WPF/Tile.WPF.cs index 9c57232f..80a17988 100644 --- a/MapControl/WPF/Tile.WPF.cs +++ b/MapControl/WPF/Tile.WPF.cs @@ -23,7 +23,7 @@ namespace MapControl private void FadeIn() { - if (Image.Source is BitmapSource bitmap && bitmap.IsDownloading && !bitmap.IsFrozen) + if (Image.Source is BitmapSource bitmap && !bitmap.IsFrozen && bitmap.IsDownloading) { bitmap.DownloadCompleted += BitmapDownloadCompleted; bitmap.DownloadFailed += BitmapDownloadFailed;