Printing a dashed line causes all later solid lines in postscript

output to be dashed.
This commit is contained in:
Blake Leverett 2004-01-23 02:11:29 +00:00 committed by Alexandre Julliard
parent 7494b5b980
commit 60eb3c9084
1 changed files with 6 additions and 3 deletions

View File

@ -517,10 +517,13 @@ BOOL PSDRV_WriteSetPen(PSDRV_PDEVICE *physDev)
if(physDev->pen.dash) {
sprintf(buf, pssetdash, physDev->pen.dash, 0);
PSDRV_WriteSpool(physDev, buf, strlen(buf));
}
return TRUE;
else
sprintf(buf, pssetdash, "", 0);
PSDRV_WriteSpool(physDev, buf, strlen(buf));
return TRUE;
}
BOOL PSDRV_WriteGlyphShow(PSDRV_PDEVICE *physDev, LPCSTR g_name)