mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-29 07:37:57 +02:00
Fix next line since we already invert the position of the viewport by doing a negative scale
This commit is contained in:
parent
776c10d4e6
commit
6600e747e5
1 changed files with 1 additions and 1 deletions
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…
Add table
Add a link
Reference in a new issue