diff --git a/src/UI/WPF/ViewModels/AnimationControlViewModel.cs b/src/UI/WPF/ViewModels/AnimationControlViewModel.cs index 6ff1840..8e1f47a 100644 --- a/src/UI/WPF/ViewModels/AnimationControlViewModel.cs +++ b/src/UI/WPF/ViewModels/AnimationControlViewModel.cs @@ -2391,7 +2391,9 @@ namespace NavisworksTransport.UI.WPF.ViewModels double searchedWidthAcrossPath = 0.0; double searchedHeightAlongUp = 0.0; bool hasSearchedExtents = false; - if ((CurrentPathRoute?.PathType == PathType.Ground || CurrentPathRoute?.PathType == PathType.Hoisting) + if ((CurrentPathRoute?.PathType == PathType.Ground || + CurrentPathRoute?.PathType == PathType.Hoisting || + CurrentPathRoute?.PathType == PathType.Free) && routePoints != null && routePoints.Count >= 2) { var start = routePoints[0];