Commit 60eb3c90 authored by Blake Leverett's avatar Blake Leverett Committed by Alexandre Julliard

Printing a dashed line causes all later solid lines in postscript

output to be dashed.
parent 7494b5b9
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment