소스 검색

Fixed nummer bug

Jeroen 10 년 전
부모
커밋
ad399c15b4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Breda-Tour/MapScreen/MapPage.xaml.cs

+ 1 - 1
Breda-Tour/MapScreen/MapPage.xaml.cs

@@ -107,7 +107,7 @@ namespace Breda_Tour.MapScreen
                 for (int x = 0; x < route.Waypoints.Count; x++)
                 {
                     Waypoint wayp = route.Waypoints.ElementAt(x);
-                    MapIcon wp = new MapIcon { Location = wayp.Position, Title = x + 1.ToString() };
+                    MapIcon wp = new MapIcon { Location = wayp.Position, Title = (x + 1).ToString() };
                     Map.MapElements.Add(wp);
                 }
                 //foreach (var waypoint in route.WayPoints)