diff options
author | Sam Wilkins <samwilkins333@gmail.com> | 2019-07-11 12:52:01 -0400 |
---|---|---|
committer | Sam Wilkins <samwilkins333@gmail.com> | 2019-07-11 12:52:01 -0400 |
commit | ba09a26ba84bd8315b1a05e43f7cc0f2b2bd5007 (patch) | |
tree | dc7d2dbc30fbadeda03a2546455ebad4cb0053f6 | |
parent | 145bc737a6f234821c941a14e0a859a5c5eac307 (diff) |
prototype default options fix
-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 62ec2f8bc..f777d8ef7 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -99,7 +99,7 @@ export namespace Docs { primary: FormattedTextBox.LayoutString() }], [DocumentType.HIST, { - options: { nativeWidth: 600, curPage: 0 }, + options: { height: 300, backgroundColor: "black" }, primary: CollectionView.LayoutString("annotations"), background: HistogramBox.LayoutString() }], |