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,8 +517,11 @@ BOOL PSDRV_WriteSetPen(PSDRV_PDEVICE *physDev)
if(physDev->pen.dash) {
sprintf(buf, pssetdash, physDev->pen.dash, 0);
PSDRV_WriteSpool(physDev, buf, strlen(buf));
}
else
sprintf(buf, pssetdash, "", 0);
PSDRV_WriteSpool(physDev, buf, strlen(buf));
return TRUE;
}
......
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