Merge pull request #6091 from Snuffleupagus/bolder-ArialBlack

Increase the font weight used for non-embedded ArialBlack fonts
This commit is contained in:
Yury Delendik 2015-06-12 10:25:53 -05:00
commit 0259448e13

View File

@ -1225,7 +1225,7 @@ var CanvasGraphics = (function CanvasGraphicsClosure() {
}
var name = fontObj.loadedName || 'sans-serif';
var bold = fontObj.black ? (fontObj.bold ? 'bolder' : 'bold') :
var bold = fontObj.black ? (fontObj.bold ? '900' : 'bold') :
(fontObj.bold ? 'bold' : 'normal');
var italic = fontObj.italic ? 'italic' : 'normal';