diff options
author | bobzel <zzzman@gmail.com> | 2020-12-07 17:15:09 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-12-07 17:15:09 -0500 |
commit | 8bbe55468f2ea222ed8c4dc513e65707c8835737 (patch) | |
tree | 6ea92d326baaffe40655937c43431a366b810b41 /src/client/views/nodes/formattedText/FormattedTextBox.tsx | |
parent | ff791402919478bf153179a6629752f2066edc29 (diff) |
got rid of LibraryPath. Fixed collectionFreeFormDocViews to use pres Effects whenever doc is selected
Diffstat (limited to 'src/client/views/nodes/formattedText/FormattedTextBox.tsx')
-rw-r--r-- | src/client/views/nodes/formattedText/FormattedTextBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/formattedText/FormattedTextBox.tsx b/src/client/views/nodes/formattedText/FormattedTextBox.tsx index 6768acce4..59909cea1 100644 --- a/src/client/views/nodes/formattedText/FormattedTextBox.tsx +++ b/src/client/views/nodes/formattedText/FormattedTextBox.tsx @@ -99,7 +99,7 @@ export class FormattedTextBox extends ViewBoxAnnotatableComponent<(FieldViewProp private _currentTime: number = 0; private _linkTime: number | null = null; private _pause: boolean = false; - private _animatingScroll: numher = 0; // hack to prevent scroll values from being written to document when scroll is animating + private _animatingScroll: number = 0; // hack to prevent scroll values from being written to document when scroll is animating @computed get _recording() { return this.dataDoc?.audioState === "recording"; } set _recording(value) { |