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:
commit
beec8abd2a
1 changed files with 1 additions and 1 deletions
|
@ -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');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue