Skip to content

Commit

Permalink
Added option to display system names in overview.
Browse files Browse the repository at this point in the history
Added correct display of jump bridges in routes on the overview.
Added right click menu to set system as destination or to add a waypoint to the route.
  • Loading branch information
EVEJay committed Dec 21, 2023
1 parent 5a3382e commit 303c7bc
Show file tree
Hide file tree
Showing 3 changed files with 184 additions and 56 deletions.
18 changes: 18 additions & 0 deletions SMT/MapConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ public class MapConfig : INotifyPropertyChanged
private bool m_overlayShowNPCKillDelta = true;
private bool m_overlayShowRoute = true;
private bool m_overlayShowJumpBridges = true;
private bool m_overlayShowSystemNames = false;

public MapConfig()
{
Expand Down Expand Up @@ -1162,6 +1163,22 @@ public bool OverlayShowJumpBridges
}
}

[Category("Overlay")]
[DisplayName("Overlay Show System Names")]
public bool OverlayShowSystemNames
{
get
{
return m_overlayShowSystemNames;
}
set
{
m_overlayShowSystemNames = value;

OnPropertyChanged("OverlayShowSystemNames");
}
}

[Category("Overlay")]
[DisplayName("Overlay Intel Fresh Time")]
public float IntelFreshTime
Expand Down Expand Up @@ -1338,6 +1355,7 @@ public void SetDefaults()
OverlayShowNPCKillDelta = true;
OverlayShowRoute = true;
OverlayShowJumpBridges = true;
OverlayShowSystemNames = false;

IntelFreshTime = 30;
IntelStaleTime = 120;
Expand Down
Loading

0 comments on commit 303c7bc

Please sign in to comment.