diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-10-01 21:48:15 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-10-01 21:48:15 -0400 |
commit | 88b20ece053ae85e541f4903748ee311b9ecf81c (patch) | |
tree | cccfa6aaa34948bb158ab8f8d91ab91dc853d06f /src/client/documents/Documents.ts | |
parent | 128b8f61a8e3c7557bf7c3424a76f9c61ad6a56b (diff) |
better fix than last one for icon sizes and default pdf dimensions.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 0d04d044e..4d9698532 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -591,6 +591,7 @@ export namespace Docs { if (type.indexOf("pdf") !== -1) { ctor = Docs.Create.PdfDocument; options.nativeWidth = 1200; + options.nativeHeight = 1200; } if (type.indexOf("excel") !== -1) { ctor = Docs.Create.DBDocument; |