aboutsummaryrefslogtreecommitdiff
path: root/src/client/documents/Documents.ts
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2019-10-15 00:36:35 -0400
committerBob Zeleznik <zzzman@gmail.com>2019-10-15 00:36:35 -0400
commit69d822d6c68b69e5bfeeff03942ea9bab71cecc3 (patch)
treefec0ed240a9df5b2abe815b3212b818d60fb6476 /src/client/documents/Documents.ts
parent26e215b0cddbb4c14cfd8eb7a720a373e797c615 (diff)
tweak to linearView layouts with onClick items
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r--src/client/documents/Documents.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts
index 13cc7815c..5794a6bee 100644
--- a/src/client/documents/Documents.ts
+++ b/src/client/documents/Documents.ts
@@ -198,7 +198,7 @@ export namespace Docs {
layout: { view: PresBox },
options: {}
}],
- [DocumentType.FONTICONBOX, {
+ [DocumentType.FONTICON, {
layout: { view: FontIconBox },
options: { width: 40, height: 40 },
}],
@@ -496,7 +496,7 @@ export namespace Docs {
export function FontIconDocument(options?: DocumentOptions) {
- return InstanceFromProto(Prototypes.get(DocumentType.FONTICONBOX), undefined, { ...(options || {}) });
+ return InstanceFromProto(Prototypes.get(DocumentType.FONTICON), undefined, { ...(options || {}) });
}
export function LinkFollowBoxDocument(options?: DocumentOptions) {