diff options
| author | bobzel <zzzman@gmail.com> | 2020-03-09 19:47:45 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-09 19:47:45 -0400 |
| commit | 7fa0783cdc37a70dc8d967188a27d50f269042cc (patch) | |
| tree | baa864643547ba264e85a09ad878818ab3cf7111 /src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | |
| parent | cabb2cf9065d85112f1bd89e31b41dafdbc4ba54 (diff) | |
| parent | 08aa3b6fc47cb7719c5690c176d05db36e724382 (diff) | |
Merge pull request #345 from browngraphicslab/audio_refactor
Audio refactor
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx index 28f8bc048..7adafea0e 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -801,7 +801,7 @@ export class CollectionFreeFormView extends CollectionSubView(PanZoomDocument) { this.props.Document.scrollY = NumCast(doc.y) - offset; } - afterFocus && setTimeout(() => afterFocus?.(), 1000); + afterFocus && setTimeout(afterFocus, 1000); } else { const layoutdoc = Doc.Layout(doc); const newPanX = NumCast(doc.x) + NumCast(layoutdoc._width) / 2; |
