gdiplus: Allow widening a "closed" line segment.
Signed-off-by: Vincent Povirk <vincent@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
1f00ba5b5d
commit
96eac4876c
|
@ -1888,7 +1888,7 @@ static void widen_closed_figure(GpPath *path, GpPen *pen, int start, int end,
|
|||
int i;
|
||||
path_list_node_t *prev_point;
|
||||
|
||||
if (end <= start+1)
|
||||
if (end <= start)
|
||||
return;
|
||||
|
||||
/* left outline */
|
||||
|
|
Loading…
Reference in New Issue