From 6600e747e5e48a6acff3d8d140ac6d478f977327 Mon Sep 17 00:00:00 2001 From: Vivien Nicolas <21@vingtetun.org> Date: Tue, 19 Jul 2011 15:04:22 +0200 Subject: [PATCH] Fix next line since we already invert the position of the viewport by doing a negative scale --- pdf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdf.js b/pdf.js index 03cb16126..63a948df1 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) {