Printing a dashed line causes all later solid lines in postscript
output to be dashed.
This commit is contained in:
parent
7494b5b980
commit
60eb3c9084
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue