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

Merge pull request #4993 from pramodhkp/rectelmnt

Combine re element into constructPath
This commit is contained in:
Yury Delendik 2014-06-24 09:27:21 -05:00
commit 6d5a04149b
4 changed files with 39 additions and 39 deletions

View file

@ -852,6 +852,9 @@ var PartialEvaluator = (function PartialEvaluatorClosure() {
case OPS.closePath:
self.buildPath(operatorList, fn, args);
continue;
case OPS.rectangle:
self.buildPath(operatorList, fn, args);
continue;
}
operatorList.addOp(fn, args);
}