diff options
author | Sam Wilkins <samwilkins333@gmail.com> | 2020-04-26 19:29:50 -0700 |
---|---|---|
committer | Sam Wilkins <samwilkins333@gmail.com> | 2020-04-26 19:29:50 -0700 |
commit | c75ffd4900acea74c55b6bf275a5e8082c15d573 (patch) | |
tree | b8cedbc9da3061e13ab321d3a86134e41690b8be /src/client/documents/Documents.ts | |
parent | 63985ba64dc4a3a94bac75a9120cd8a5ca791fec (diff) |
formatted textbox disposers refactor, paragraph chunked rich text initialization and buxton importer updates
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 1268c97b0..6bd2eee3c 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -407,6 +407,7 @@ export namespace Docs { const doc = StackingDocument(deviceImages, { title: device.title, _LODdisable: true }); const deviceProto = Doc.GetProto(doc); deviceProto.hero = new ImageField(constructed[0].url); + deviceProto.fontFamily = "Arial"; Docs.Get.FromJson({ data: device, appendToExisting: { targetDoc: deviceProto } }); Doc.AddDocToList(parentProto, "data", doc); } else if (errors) { |