Fixed missing Action

This commit is contained in:
ClemensF 2016-02-01 17:37:33 +01:00
parent 4a37e94d77
commit 3a414a7a6a

View file

@ -736,7 +736,7 @@ namespace MapControl
InternalSetValue(ZoomLevelProperty, TargetZoomLevel);
RemoveAnimation(ZoomLevelProperty); // remove holding animation in WPF
Dispatcher.BeginInvoke(() => UpdateTransform(true));
Dispatcher.BeginInvoke(new Action(() => UpdateTransform(true)));
}
}