diff options
author | Jonathan Duran | 2012-07-09 09:00:37 -0700 |
---|---|---|
committer | Jonathan Duran | 2012-07-09 09:00:37 -0700 |
commit | 39aa69624e1e3b8598b0242ee6ec436862b67280 (patch) | |
tree | 252ba58a3f2bb9600262c48571cc3dabaee36449 /js/panels/Timeline/PropertyTrack.reel | |
parent | f20b1985dd672d36db1dc61fa30c53d9af6aacef (diff) | |
parent | 8c087f7c13a2bd72e1640e99e339a74fc2250901 (diff) | |
download | ninja-39aa69624e1e3b8598b0242ee6ec436862b67280.tar.gz |
Merge branch 'refs/heads/timeline-local' into TimelineUber
Conflicts:
js/panels/Timeline/Layer.reel/Layer.js
js/panels/Timeline/Style.reel/Style.js
js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js
Signed-off-by: Jonathan Duran <jduran@motorola.com>
Diffstat (limited to 'js/panels/Timeline/PropertyTrack.reel')
-rw-r--r-- | js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js b/js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js index 24fd8392..33029e9e 100644 --- a/js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js +++ b/js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js | |||
@@ -268,7 +268,9 @@ var PropertyTrack = exports.PropertyTrack = Montage.create(Component, { | |||
268 | insertPropTween:{ | 268 | insertPropTween:{ |
269 | value:function(clickPos){ | 269 | value:function(clickPos){ |
270 | var selectedIndex = this.application.ninja.timeline.getLayerIndexByID(this.trackID); | 270 | var selectedIndex = this.application.ninja.timeline.getLayerIndexByID(this.trackID); |
271 | this.application.ninja.timeline.selectLayer(selectedIndex, true); | 271 | // this.application.ninja.timeline.selectLayer(selectedIndex, true); // Deprecated. |
272 | this.application.ninja.timeline.selectLayers([selectedIndex]); | ||
273 | this.application.ninja.timeline.updateStageSelection(); | ||
272 | 274 | ||
273 | var currentMillisecPerPixel = Math.floor(this.application.ninja.timeline.millisecondsOffset / 80); | 275 | var currentMillisecPerPixel = Math.floor(this.application.ninja.timeline.millisecondsOffset / 80); |
274 | var currentMillisec = currentMillisecPerPixel * clickPos; | 276 | var currentMillisec = currentMillisecPerPixel * clickPos; |