Skip to content

Commit

Permalink
Fix backButton nav title
Browse files Browse the repository at this point in the history
  • Loading branch information
agaertner authored and dlamkins committed Oct 3, 2020
1 parent 23593cc commit 1a81e84
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions KillProofModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,16 @@ protected override void DefineSettings(SettingCollection settings)
}

#region Localization
private string KillProofTabName = "KillProof";

private string SORTBY_ALL;
private string SORTBY_KILLPROOF;
private string SORTBY_TOKEN;
private string SORTBY_TITLE;
private string SORTBY_RAID;
private string SORTBY_FRACTAL;
//private string SmartPingMenuSettingDisplayName;
//private string SmartPingMenuSettingDescription;
private string KillProofTabName;
//private string SmartPingMenuSettingDescription
private string NewVersionFound;
private string NotificationProfileAvailable;
private string SmartPingMenuToggleCheckboxText;
Expand All @@ -117,6 +118,7 @@ protected override void DefineSettings(SettingCollection settings)
private string SmartPingMenuRightclickSendMessage;
private string ClearButtonText;
private string ClearButtonTooltipText;

private void ChangeLocalization(object sender, EventArgs e)
{
//SmartPingMenuSettingDisplayName = Properties.Resources.Kill_Proof_Smart_Ping_Menu;
Expand Down Expand Up @@ -165,7 +167,7 @@ private void ChangeLocalization(object sender, EventArgs e)
if (_killProofTab != null)
GameService.Overlay.BlishHudWindow.RemoveTab(_killProofTab);

_killProofTab = GameService.Overlay.BlishHudWindow.AddTab("KillProof", _killProofIconTexture, _modulePanel, 0);
_killProofTab = GameService.Overlay.BlishHudWindow.AddTab(KillProofTabName, _killProofIconTexture, _modulePanel, 0);
}
#endregion

Expand Down

0 comments on commit 1a81e84

Please sign in to comment.