From: kramm Date: Mon, 29 Oct 2001 15:22:52 +0000 (+0000) Subject: bugfix: some lines were too thick or too thin X-Git-Tag: release-0-1-0~79 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=b758bdb10da8e20798da872c5db99eccc399bfd6 bugfix: some lines were too thick or too thin --- diff --git a/pdf2swf/SWFOutputDev.cc b/pdf2swf/SWFOutputDev.cc index a3f3d15..c2aa5cb 100644 --- a/pdf2swf/SWFOutputDev.cc +++ b/pdf2swf/SWFOutputDev.cc @@ -741,7 +741,7 @@ int SWFOutputDev::setT1Font(char*name, FontEncoding*encoding) void SWFOutputDev::updateLineWidth(GfxState *state) { - double width = state->getLineWidth(); + double width = state->getTransformedLineWidth(); swfoutput_setlinewidth(&output, width); }