Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: changed the show string in action cd button.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Apr 12, 2023
1 parent 04a5221 commit c350659
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RotationSolver/UI/ImGuiHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ private unsafe static void Display(this IBaseAction action, bool IsActive) => ac
}, otherThing: () =>
{
var enable = action.IsInCooldown;
if (ImGui.Checkbox($"CD##{action.Name}InCooldown", ref enable))
if (ImGui.Checkbox($"CD Window##{action.Name}InCooldown", ref enable))
{
action.IsInCooldown = enable;
Service.Config.Save();
Expand Down Expand Up @@ -632,7 +632,7 @@ public unsafe static void Display(this IBaseItem item, bool IsActive) => item.Dr
() => RotationConfigWindow.ActiveAction = item, otherThing: () =>
{
var enable = item.IsInCooldown;
if (ImGui.Checkbox($"CD##{item.Name}InCooldown", ref enable))
if (ImGui.Checkbox($"CD Window##{item.Name}InCooldown", ref enable))
{
item.IsInCooldown = enable;
Service.Config.Save();
Expand Down

0 comments on commit c350659

Please sign in to comment.