diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2019-10-23 11:45:08 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2019-10-23 11:45:08 -0400 |
| commit | 86e985ef3a96d9849799e436d2158fef0b2b7f94 (patch) | |
| tree | 959dd162554ac2692611c7ddc8a5ea42ec0f780e /src/client/views/InkingStroke.tsx | |
| parent | 3c8d5d0a53d03d570fd57789ecf43121eb814b0f (diff) | |
added scrubbing from text notes
Diffstat (limited to 'src/client/views/InkingStroke.tsx')
| -rw-r--r-- | src/client/views/InkingStroke.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/InkingStroke.tsx b/src/client/views/InkingStroke.tsx index 7bbf71482..332c22512 100644 --- a/src/client/views/InkingStroke.tsx +++ b/src/client/views/InkingStroke.tsx @@ -34,7 +34,7 @@ export class InkingStroke extends React.Component<StrokeProps> { e.preventDefault(); } if (InkingControl.Instance.selectedTool === InkTool.Scrubber && e.buttons === 1) { - runInAction(() => AudioBox.ScrubTime = this.props.creationTime); + AudioBox.SetScrubTime(this.props.creationTime); e.stopPropagation(); e.preventDefault(); } |
