[poppler] poppler/ArthurOutputDev.cc

Pino Toscano pino at kemper.freedesktop.org
Sun Nov 7 13:58:42 PST 2010


 poppler/ArthurOutputDev.cc |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 14dea4d74698d5d7d994e687f8176652d790dba7
Author: Pino Toscano <pino at kde.org>
Date:   Sun Nov 7 22:57:31 2010 +0100

    [arthur] use the untransformed line width, not the transformed one
    
    ... as the painter will do the transformation itself already;
    seems to product better results

diff --git a/poppler/ArthurOutputDev.cc b/poppler/ArthurOutputDev.cc
index 54acf12..71faeb5 100644
--- a/poppler/ArthurOutputDev.cc
+++ b/poppler/ArthurOutputDev.cc
@@ -224,7 +224,7 @@ void ArthurOutputDev::updateMiterLimit(GfxState *state)
 
 void ArthurOutputDev::updateLineWidth(GfxState *state)
 {
-  m_currentPen.setWidthF(state->getTransformedLineWidth());
+  m_currentPen.setWidthF(state->getLineWidth());
   m_painter->setPen(m_currentPen);
 }
 


More information about the poppler mailing list