Skip to content

Commit

Permalink
fixes for highlighting Turnur in the route panel
Browse files Browse the repository at this point in the history
  • Loading branch information
BitBaboonSteve committed Sep 8, 2024
1 parent dd98559 commit e0467ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion EVEData/Navigation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ public static List<RoutePoint> Navigate(string From, string To, bool UseJumpGate
RP.GateToTake = GateType.Zarzakh;
}

if (UseTurnur && mn.TurnurConnections != null && mn.TurnurConnections.Contains(Route[i + 1]))
if (UseTurnur && mn.TurnurConnections != null && mn.TurnurConnections.Contains(Route[i + 1]) && mn.Name == "Turnur")
{
RP.GateToTake = GateType.Turnur;
}
Expand Down
2 changes: 1 addition & 1 deletion SMT/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@
<Setter Property="Background" Value="#292" />
</DataTrigger>

<DataTrigger Binding="{Binding GateToTake}" Value="Thera">
<DataTrigger Binding="{Binding GateToTake}" Value="Turnur">
<Setter Property="Background" Value="DarkRed" />
</DataTrigger>

Expand Down

0 comments on commit e0467ae

Please sign in to comment.