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 #3104 from vyv03354/issue2907

Increase minimum font size to 16px to avoid conflict with browser's mini...
This commit is contained in:
Brendan Dahl 2013-04-30 15:32:17 -07:00
commit beec8abd2a

View file

@ -36,7 +36,7 @@ var TextRenderingMode = {
};
// Minimal font size that would be used during canvas fillText operations.
var MIN_FONT_SIZE = 1;
var MIN_FONT_SIZE = 16;
function createScratchCanvas(width, height) {
var canvas = document.createElement('canvas');