Commit 09b7aed7 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

gdiplus: Set the wrap mode in the path gradient constructor.

parent b228426d
......@@ -597,6 +597,9 @@ GpStatus WINGDIPAPI GdipCreatePathGradient(GDIPCONST GpPointF* points,
GdipDeletePath(path);
}
if (stat == Ok)
(*grad)->wrap = wrap;
return stat;
}
......@@ -627,6 +630,9 @@ GpStatus WINGDIPAPI GdipCreatePathGradientI(GDIPCONST GpPoint* points,
GdipDeletePath(path);
}
if (stat == Ok)
(*grad)->wrap = wrap;
return stat;
}
......
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