Skip to content

Commit

Permalink
more clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaksuhn committed Feb 11, 2024
1 parent e5c8860 commit cac248d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SomethingNeedDoing/Interface/HelpWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -999,14 +999,14 @@ static void DisplayOption(params string[] lines)
if (ImGui.CollapsingHeader("/waitaddon"))
{
var stopMacro = Service.Configuration.StopMacroIfAddonNotFound;
if (ImGui.Checkbox("Stop macro if requested addon is not found", ref stopMacro))
if (ImGui.Checkbox("Stop macro if the requested addon is not found", ref stopMacro))
{
Service.Configuration.StopMacroIfAddonNotFound = stopMacro;
Service.Configuration.Save();
}

var stopMacroVisible = Service.Configuration.StopMacroIfAddonNotVisible;
if (ImGui.Checkbox("Stop macro if requested addon isn't visible", ref stopMacroVisible))
if (ImGui.Checkbox("Stop macro if the requested addon is not visible", ref stopMacroVisible))
{
Service.Configuration.StopMacroIfAddonNotVisible = stopMacroVisible;
Service.Configuration.Save();
Expand Down

0 comments on commit cac248d

Please sign in to comment.