Merge pull request #3890 from sriram-dev/3205-word-spacing

correct word spacing
This commit is contained in:
Yury Delendik 2013-11-08 09:18:00 -08:00
commit d4167b62c8
3 changed files with 14 additions and 1 deletions

View File

@ -4575,8 +4575,10 @@ var Font = (function FontClosure() {
var glyph = this.charToGlyph(charcode);
glyphs.push(glyph);
// placing null after each word break charcode (ASCII SPACE)
if (charcode == 0x20)
// Ignore occurences of 0x20 in multiple-byte codes.
if (length === 1 && chars.charCodeAt(i - 1) === 0x20) {
glyphs.push(null);
}
}
}
else {

View File

@ -0,0 +1,2 @@
http://teach.beaverton.k12.or.us/~shannon_schilling/FOV1-00015633/FOV1-0007B939/FOV1-000B0E58/Physics%20HL%20paper%202%20TZ1%20markscheme.pdf

View File

@ -1436,5 +1436,14 @@
"firstPage": 1,
"lastPage": 2,
"type": "eq"
},
{ "id": "issue3205",
"file": "pdfs/issue3205.pdf",
"md5": "e833326f69f2fdf7c1c8438fe1d3b622",
"rounds": 1,
"link": true,
"firstPage": 4,
"lastPage": 4,
"type": "eq"
}
]