[poppler] poppler/poppler: PSOutputDev.cc,1.11,1.11.2.1
Albert Astals Cid
aacid at kemper.freedesktop.org
Sat Nov 11 07:40:08 PST 2006
Update of /cvs/poppler/poppler/poppler
In directory kemper:/tmp/cvs-serv27468/poppler
Modified Files:
Tag: POPPLER_0_5_X
PSOutputDev.cc
Log Message:
Fix typo when outputing PS scale
Index: PSOutputDev.cc
===================================================================
RCS file: /cvs/poppler/poppler/poppler/PSOutputDev.cc,v
retrieving revision 1.11
retrieving revision 1.11.2.1
diff -u -d -r1.11 -r1.11.2.1
--- PSOutputDev.cc 1 Jun 2006 06:42:25 -0000 1.11
+++ PSOutputDev.cc 11 Nov 2006 15:40:06 -0000 1.11.2.1
@@ -2574,7 +2574,7 @@
writePSFmt("%g %g translate\n", tx, ty);
}
if (xScale != 1 || yScale != 1) {
- writePSFmt("%0.4f %0.4f scale\n", xScale, xScale);
+ writePSFmt("%0.4f %0.4f scale\n", xScale, yScale);
}
if (clipLLX0 < clipURX0 && clipLLY0 < clipURY0) {
writePSFmt("%g %g %g %g re W\n",
More information about the poppler
mailing list