diff options
author | bob <bcz@cs.brown.edu> | 2019-04-04 18:18:45 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-04-04 18:18:45 -0400 |
commit | 4fde212cd00bd2f8fc2fa122309af3bb71bba2fd (patch) | |
tree | 7bdbbc74be779afe21e7fd82832d85b2c587aca6 /src/client/documents/Documents.ts | |
parent | e70be930dc7c8ff1e999bf163bcbb511a60bae6f (diff) |
improved pdf bitmaps a bit, but still blurry.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 0bf275df8..1f0744782 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -136,7 +136,7 @@ export namespace Documents { function GetPdfPrototype(): Document { if (!pdfProto) { pdfProto = setupPrototypeOptions(pdfProtoId, "PDF_PROTO", CollectionPDFView.LayoutString("AnnotationsKey"), - { x: 0, y: 0, nativeWidth: 600, width: 300, layoutKeys: [KeyStore.Data, KeyStore.Annotations] }); + { x: 0, y: 0, nativeWidth: 1200, width: 300, layoutKeys: [KeyStore.Data, KeyStore.Annotations] }); pdfProto.SetNumber(KeyStore.CurPage, 1); pdfProto.SetText(KeyStore.BackgroundLayout, PDFBox.LayoutString()); } |