1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

macOS: Fixed a CoreGraphics text layout bug

This commit is contained in:
Tom Poole 2020-01-17 16:34:50 +00:00
parent 161e5cd1c3
commit 47f138464f
3 changed files with 25 additions and 24 deletions

View file

@ -711,7 +711,7 @@ void GlyphArrangement::draw (const Graphics& g, AffineTransform transform) const
for (int i = 0; i < glyphs.size(); ++i)
{
auto& pg = glyphs.getReference(i);
auto& pg = glyphs.getReference (i);
if (pg.font.isUnderlined())
drawGlyphUnderline (g, pg, i, transform);