From acc400dcd95460df8c1ebc551e7eeba754b20356 Mon Sep 17 00:00:00 2001 From: ClemensFischer Date: Tue, 22 Aug 2023 06:44:21 +0200 Subject: [PATCH] Update Tile.cs --- MapControl/Shared/Tile.cs | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/MapControl/Shared/Tile.cs b/MapControl/Shared/Tile.cs index 1991d5a9..20af64be 100644 --- a/MapControl/Shared/Tile.cs +++ b/MapControl/Shared/Tile.cs @@ -60,13 +60,14 @@ namespace MapControl private void BeginOpacityAnimation() { - Image.BeginAnimation(UIElement.OpacityProperty, new DoubleAnimation - { - From = 0d, - To = 1d, - Duration = MapBase.ImageFadeDuration, - FillBehavior = FillBehavior.Stop - }); + Image.BeginAnimation(UIElement.OpacityProperty, + new DoubleAnimation + { + From = 0d, + To = 1d, + Duration = MapBase.ImageFadeDuration, + FillBehavior = FillBehavior.Stop + }); } } }