removed a stray "closepath" for open polygons in postscript output

This commit is contained in:
Stefan Schippers 2020-11-19 11:28:04 +01:00
parent 20afce9ab6
commit 25cc006ffe
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ static void ps_drawpolygon(int c, int what, double *x, double *y, int points, in
fprintf(fd, "grestore\n");
fprintf(fd, " fill\n");
} else {
fprintf(fd, "closepath stroke\n");
fprintf(fd, "stroke\n");
}