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

Reducing MIN_FONT_SIZE size to 5px

This commit is contained in:
notmasteryet 2012-02-04 14:42:07 -06:00
parent 34e2aa5d21
commit bd95a191b7

View file

@ -17,7 +17,8 @@ var TextRenderingMode = {
ADD_TO_PATH: 7
};
var MIN_FONT_SIZE = 8;
// Minimal font size that would be used during canvas fillText operations.
var MIN_FONT_SIZE = 5;
var CanvasExtraState = (function CanvasExtraStateClosure() {
function CanvasExtraState(old) {