From 367e1a6b3af0f60309e04ccca3ef6719208c4d93 Mon Sep 17 00:00:00 2001 From: ClemensFischer Date: Wed, 9 Nov 2022 08:57:27 +0100 Subject: [PATCH] Change default value of MapTileLayerBase.UpdateWhileViewportChanging --- MapControl/Shared/MapTileLayerBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MapControl/Shared/MapTileLayerBase.cs b/MapControl/Shared/MapTileLayerBase.cs index a9c42f86..cfad25d6 100644 --- a/MapControl/Shared/MapTileLayerBase.cs +++ b/MapControl/Shared/MapTileLayerBase.cs @@ -52,7 +52,7 @@ namespace MapControl new PropertyMetadata(TimeSpan.FromSeconds(0.2), (o, e) => ((MapTileLayerBase)o).updateTimer.Interval = (TimeSpan)e.NewValue)); public static readonly DependencyProperty UpdateWhileViewportChangingProperty = DependencyProperty.Register( - nameof(UpdateWhileViewportChanging), typeof(bool), typeof(MapTileLayerBase), new PropertyMetadata(false)); + nameof(UpdateWhileViewportChanging), typeof(bool), typeof(MapTileLayerBase), new PropertyMetadata(true)); public static readonly DependencyProperty MapBackgroundProperty = DependencyProperty.Register( nameof(MapBackground), typeof(Brush), typeof(MapTileLayerBase), new PropertyMetadata(null));