poppler/ArthurOutputDev.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 14dea4d74698d5d7d994e687f8176652d790dba7 Author: Pino Toscano <[email protected]> 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); } _______________________________________________ poppler mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/poppler
