From ae1e89dbb8fedd90a0d2069d96912324c57e58ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Richard=20Bu=CC=88tzer?= Date: Mon, 20 Jun 2016 09:06:31 +0200 Subject: [PATCH] Acroforms: Scale the content to the text field size --- plugins/acroform.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/acroform.js b/plugins/acroform.js index 223ea125a..6e8b4404f 100644 --- a/plugins/acroform.js +++ b/plugins/acroform.js @@ -677,9 +677,9 @@ Q\n"; */ createDefaultAppearanceStream: function (formObject) { var stream = ""; - // Set Helvetica to Standard Font (12px) + // Set Helvetica to Standard Font (size: auto) // Color: Black - stream += "/Helv 12 Tf 0 g"; + stream += "/Helv 0 Tf 0 g"; return stream; } };