From b758bdb10da8e20798da872c5db99eccc399bfd6 Mon Sep 17 00:00:00 2001 From: kramm Date: Mon, 29 Oct 2001 15:22:52 +0000 Subject: [PATCH] bugfix: some lines were too thick or too thin --- pdf2swf/SWFOutputDev.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 1.7.10.4