This commit is contained in:
James Jackson-South 2023-08-24 21:14:56 +10:00
Родитель 796d4bc858
Коммит ff3acbfc19
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -137,7 +137,7 @@ public sealed class FontCollection : IFontCollection, IFontMetricsCollection
/// <inheritdoc/>
FontFamily IFontMetricsCollection.AddMetrics(FontMetrics metrics, CultureInfo culture)
{
((IFontMetricsCollection)this).AddMetrics(metrics, culture);
((IFontMetricsCollection)this).AddMetrics(metrics);
return new FontFamily(metrics.Description.FontFamily(culture), this, culture);
}

Просмотреть файл

@ -15,7 +15,7 @@ namespace SixLabors.Fonts.Benchmarks;
/// <para>We should see if we can include the Skia HarfBuzz extensions to see how we compare.</para>
/// </summary>
[MediumRunJob]
public sealed class MeasureTextBenchmark : IDisposable
public class MeasureTextBenchmark : IDisposable
{
private readonly TextOptions textOptions;
private readonly SKTypeface arialTypeface;