From: Vivien Nicolas <21@vingtetun.org> Date: Tue, 19 Jul 2011 13:04:22 +0000 (+0200) Subject: Fix next line since we already invert the position of the viewport by doing a negativ... X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=6600e747e5e48a6acff3d8d140ac6d478f977327;p=pdf.js.git Fix next line since we already invert the position of the viewport by doing a negative scale --- diff --git a/pdf.js b/pdf.js index 03cb161..63a948d 100644 --- a/pdf.js +++ b/pdf.js @@ -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) {