diff options
| author | bobzel <zzzman@gmail.com> | 2021-03-26 13:22:13 -0400 | 
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-03-26 13:22:13 -0400 | 
| commit | 36028677c61be7ab5937e864e881fa91a3b82d8c (patch) | |
| tree | 63e51ff8283cf269d491bd277b8d403a3ff59474 /src/client/views/DocumentDecorations.tsx | |
| parent | 7878bc22a6dec8bff17f38aa3ffad897babb9e16 (diff) | |
extracted AudioWaveform out of AudioBox in order to use in CollectionStackedTimelineView to share between audioBox and videoBox.
Diffstat (limited to 'src/client/views/DocumentDecorations.tsx')
| -rw-r--r-- | src/client/views/DocumentDecorations.tsx | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/client/views/DocumentDecorations.tsx b/src/client/views/DocumentDecorations.tsx index da50ba4d8..a92891ee5 100644 --- a/src/client/views/DocumentDecorations.tsx +++ b/src/client/views/DocumentDecorations.tsx @@ -94,7 +94,7 @@ export class DocumentDecorations extends React.Component<{ boundsLeft: number, b          setupMoveUpEvents(this, e, e => this.onBackgroundMove(true, e), (e) => { }, action((e) => {              !this._edtingTitle && (this._accumulatedTitle = this._titleControlString.startsWith("#") ? this.selectionTitle : this._titleControlString);              this._edtingTitle = true; -            this._keyinput.current && setTimeout(this._keyinput.current!.focus); +            this._keyinput.current && setTimeout(this._keyinput.current.focus);          }));      } | 
