Skip to content

Commit

Permalink
add press enter message
Browse files Browse the repository at this point in the history
  • Loading branch information
Raicuparta committed May 18, 2022
1 parent d5aff60 commit 193dded
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion GorillaTagLIV/LivComputerView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace GorillaTagLIV
{
public class LivComputerView : ComputerView
{
private const string highlightColor = "00ff0010";
private const string highlightColor = "52fc03";
private readonly UISelectionHandler selectionHandler;

public LivComputerView()
Expand Down Expand Up @@ -61,6 +61,8 @@ private void UpdateScreen()
str.MakeBar('-', SCREEN_WIDTH, 0, "ffffff10");
str.EndAlign().AppendLines(1);
str.AppendLine(selectionHandler.GetIndicatedText(0, $"Show Gorilla Body: <color={(Plugin.Instance.ShowGorillaBody.Value ? $"#{highlightColor}>Yes" : "white>No")}</color>"));
str.AppendLines(2);
str.AppendClr("Press ENTER to toggle setting", "ffffff10").EndColor().AppendLine();
});
}
}
Expand Down

0 comments on commit 193dded

Please sign in to comment.