Skip to content

Commit

Permalink
Merge pull request #146 from EVEJay/master
Browse files Browse the repository at this point in the history
System name display, jump bridges in routes display, route control context menu
  • Loading branch information
Slazanger authored Dec 21, 2023
2 parents 5a3382e + 303c7bc commit c1a826b
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 c1a826b

Please sign in to comment.