Commit 03bc97a8 authored by David Kahurani's avatar David Kahurani Committed by Alexandre Julliard

gdiplus: Traverse and draw the whole string.

parent eb73012a
......@@ -908,7 +908,7 @@ static GpStatus format_string_callback(HDC dc,
if (y + bounds->Height * args->scale > args->maxY)
args->maxY = y + bounds->Height * args->scale;
for (i = index; i < length; ++i)
for (i = index; i < length + index; ++i)
{
GLYPHMETRICS gm;
TTPOLYGONHEADER *ph = NULL, *origph;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment