Browse Source

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

Vivien Nicolas 14 years ago
parent
commit
6600e747e5
  1. 2
      pdf.js

2
pdf.js

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

Loading…
Cancel
Save