Skip to content

Commit

Permalink
Add missing string for second line explaining path output
Browse files Browse the repository at this point in the history
  • Loading branch information
enviGit committed Nov 9, 2024
1 parent 08e0c5f commit c52b03c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions OptimizationIssues/Views/TSPView.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ private void SolveButton_Click(object sender, RoutedEventArgs e)
Foreground = new SolidColorBrush((Color)ColorConverter.ConvertFromString("#98FF98"))
});

ResultTextBlock.Inlines.Add(new Run("Trasa: ")
{
Foreground = new SolidColorBrush(Colors.White)
});

var pathParts = pathString.Split(new string[] { " -> " }, StringSplitOptions.None);

for (int i = 0; i < pathParts.Length; i++)
Expand Down

0 comments on commit c52b03c

Please sign in to comment.