1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

Fix next line since we already invert the position of the viewport by doing a negative scale

This commit is contained in:
Vivien Nicolas 2011-07-19 15:04:22 +02:00
parent 776c10d4e6
commit 6600e747e5

2
pdf.js
View file

@ -4136,7 +4136,7 @@ var CanvasGraphics = (function() {
}
},
setLeadingMoveText: function(x, y) {
this.setLeading(-y);
this.setLeading(y);
this.moveText(x, y);
},
setTextMatrix: function(a, b, c, d, e, f) {