1
0
mirror of git://projects.qi-hardware.com/fped.git synced 2024-09-30 13:36:21 +03:00

postscript.c (prologue): set line join style to "round" in showoutlined

With the default, we get way too pointy corners in letters like "M".
This commit is contained in:
Werner Almesberger 2012-07-18 22:17:45 -03:00
parent d250ed236c
commit c28f701086

View File

@ -1085,7 +1085,7 @@ fprintf(file,
fprintf(file,
"/showoutlined {\n"
" gsave 2 mul setlinewidth 1 setgray\n"
" gsave 2 mul setlinewidth 1 setgray 1 setlinejoin\n"
" dup false charpath flattenpath stroke grestore\n"
" show } def\n");