diff --git a/CSharpMath/Display/Text/AttributedStrings/AttributedGlyphRun.cs b/CSharpMath/Display/Text/AttributedStrings/AttributedGlyphRun.cs index 9a9c0e840..21f0bf9a1 100644 --- a/CSharpMath/Display/Text/AttributedStrings/AttributedGlyphRun.cs +++ b/CSharpMath/Display/Text/AttributedStrings/AttributedGlyphRun.cs @@ -34,6 +34,6 @@ public AttributedGlyphRun(string text, IEnumerable glyphs, TFont font, b public static class AttributedGlyphRunExtensions { public static bool AttributesMatch(this AttributedGlyphRun run1, AttributedGlyphRun run2) where TFont : IFont => - !(run1 is null || run2 is null) && run1.Placeholder == run2.Placeholder && EqualityComparer.Default.Equals(run1.Font, run2.Font); + !(run1 is null || run2 is null) && EqualityComparer.Default.Equals(run1.Font, run2.Font); } }