Fix help tooltip for enabled checkbox in profiles

This commit is contained in:
RisaDev
2024-10-26 23:09:32 +03:00
parent 23b4268d50
commit 1802e500f4

View File

@@ -181,7 +181,7 @@ public class ProfilePanel
if (ImGui.Checkbox("##Enabled", ref enabled)) if (ImGui.Checkbox("##Enabled", ref enabled))
_manager.SetEnabled(_selector.Selected!, enabled); _manager.SetEnabled(_selector.Selected!, enabled);
ImGuiUtil.LabeledHelpMarker("Enabled", ImGuiUtil.LabeledHelpMarker("Enabled",
"Whether the templates in this profile should be applied at all. Only one profile can be enabled for a character at the same time."); "Whether the templates in this profile should be applied at all.");
} }
} }
} }