1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-22 16:18:08 +02:00

Merge pull request #5734 from Hengjie/lower-space-threshold

Lower space factor threshold
This commit is contained in:
Tim van der Meij 2015-03-06 21:00:01 +01:00
commit 5eedfff647

View file

@ -893,7 +893,7 @@ var PartialEvaluator = (function PartialEvaluatorClosure() {
styles: Object.create(null)
};
var bidiTexts = textContent.items;
var SPACE_FACTOR = 0.35;
var SPACE_FACTOR = 0.3;
var MULTI_SPACE_FACTOR = 1.5;
var self = this;