1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

Fix J8 vertical text placement regression in the software renderer

This commit is contained in:
attila 2025-08-13 17:05:32 +02:00 committed by Attila Szarvas
parent fa6fa9a61a
commit fa0ed2801d

View file

@ -2680,7 +2680,7 @@ protected:
if (auto fill = colourLayer->colour)
stack->setFillType (*fill);
stack->fillEdgeTable (colourLayer->clip, drawPosition.x, (int) drawPosition.y);
stack->fillEdgeTable (colourLayer->clip, drawPosition.x, roundToInt (drawPosition.y));
}
else if (auto* imageLayer = std::get_if<ImageLayer> (&layer.layer))
{