diff options
| author | andrewdkim <adkim414@gmail.com> | 2019-07-19 17:16:07 -0400 |
|---|---|---|
| committer | andrewdkim <adkim414@gmail.com> | 2019-07-19 17:16:07 -0400 |
| commit | 500126248d1bca1b32410e357a910d43a92f9e7a (patch) | |
| tree | e15fc12b7d7379d2507134fbcdb21febf1a4bbb1 /src/client/views/nodes/Track.tsx | |
| parent | e453e7010def252b6cc10ad49d64708767c5589b (diff) | |
video integration pt2 and bug fixes
Diffstat (limited to 'src/client/views/nodes/Track.tsx')
| -rw-r--r-- | src/client/views/nodes/Track.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/views/nodes/Track.tsx b/src/client/views/nodes/Track.tsx index d48abc10f..4ed2ded85 100644 --- a/src/client/views/nodes/Track.tsx +++ b/src/client/views/nodes/Track.tsx @@ -115,9 +115,9 @@ export class Track extends React.Component<IProps> { let rightkf: (Doc | undefined) = this.calcMinRight(region!); //right keyframe, if it exists let currentkf: (Doc | undefined) = this.calcCurrent(region!); //if the scrubber is on top of the keyframe - console.log(currentkf); - console.log(leftkf); - console.log(rightkf); + //console.log(currentkf); + // console.log(leftkf); + // console.log(rightkf); if (currentkf){ this.applyKeys(currentkf.key as Doc); } else { @@ -187,7 +187,7 @@ export class Track extends React.Component<IProps> { let compTime = this.props.currentBarX; if (ref){ compTime = NumCast(ref.time); - console.log(compTime); + //console.log(compTime); } if (NumCast(kf.time) < compTime && NumCast(kf.time) > NumCast(time)) { leftKf = kf; |
