aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/Track.tsx
diff options
context:
space:
mode:
authorandrewdkim <adkim414@gmail.com>2019-07-19 17:16:07 -0400
committerandrewdkim <adkim414@gmail.com>2019-07-19 17:16:07 -0400
commit500126248d1bca1b32410e357a910d43a92f9e7a (patch)
treee15fc12b7d7379d2507134fbcdb21febf1a4bbb1 /src/client/views/nodes/Track.tsx
parente453e7010def252b6cc10ad49d64708767c5589b (diff)
video integration pt2 and bug fixes
Diffstat (limited to 'src/client/views/nodes/Track.tsx')
-rw-r--r--src/client/views/nodes/Track.tsx8
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;