aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/DictationManager.ts
diff options
context:
space:
mode:
authorbob <bcz@cs.brown.edu>2020-01-24 16:34:37 -0500
committerbob <bcz@cs.brown.edu>2020-01-24 16:34:37 -0500
commit34ba9b8c3ce48c51dfb1d330d5285e0eadf92030 (patch)
tree953dcc1fb0e81b4197266122a8ce969a7459aa9d /src/client/util/DictationManager.ts
parent557e0fd8c41fbae8ddc0ba34be786c912338db23 (diff)
parent416541c18545cabe0c1b25d698770d7a50a9136e (diff)
made dataDoc be a data doc, not a layout doc & stopped expanding templates in DocumentContentsView. changed autoHeight to be _autoHeight layout property.
Diffstat (limited to 'src/client/util/DictationManager.ts')
-rw-r--r--src/client/util/DictationManager.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/util/DictationManager.ts b/src/client/util/DictationManager.ts
index a99e3bc4f..fa7f63965 100644
--- a/src/client/util/DictationManager.ts
+++ b/src/client/util/DictationManager.ts
@@ -332,8 +332,7 @@ export namespace DictationManager {
["new outline", {
action: (target: DocumentView) => {
- const newBox = Docs.Create.TextDocument({ _width: 400, _height: 200, title: "My Outline" });
- newBox.autoHeight = true;
+ const newBox = Docs.Create.TextDocument({ _width: 400, _height: 200, title: "My Outline", _autoHeight: true });
const proto = newBox.proto!;
const prompt = "Press alt + r to start dictating here...";
const head = 3;