aboutsummaryrefslogtreecommitdiff
path: root/js/panels
diff options
context:
space:
mode:
authorJonathan Duran2012-07-10 11:29:49 -0700
committerJonathan Duran2012-07-10 11:29:49 -0700
commitf4c9d9360918f41a8a067bd1d93d59982819938b (patch)
treecdaf72db44f2ba1882db4ea035def9e5378e99b1 /js/panels
parentb3a1e8f3e71d5d2d13dbe52ad377eab391bf8a26 (diff)
downloadninja-f4c9d9360918f41a8a067bd1d93d59982819938b.tar.gz
Fix layer array
Signed-off-by: Jonathan Duran <jduran@motorola.com>
Diffstat (limited to 'js/panels')
-rw-r--r--js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js b/js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js
index 4ff6a17a..12e87636 100644
--- a/js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js
+++ b/js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js
@@ -303,7 +303,7 @@ var PropertyTrack = exports.PropertyTrack = Montage.create(Component, {
303 newTween; 303 newTween;
304 304
305 selectedIndex = this.application.ninja.timeline.getLayerIndexByID(this.trackID); 305 selectedIndex = this.application.ninja.timeline.getLayerIndexByID(this.trackID);
306 this.application.ninja.timeline.selectLayers(selectedIndex, true); 306 this.application.ninja.timeline.selectLayers([selectedIndex]);
307 307
308 currentMillisecPerPixel = Math.floor(this.application.ninja.timeline.millisecondsOffset / 80); 308 currentMillisecPerPixel = Math.floor(this.application.ninja.timeline.millisecondsOffset / 80);
309 currentMillisec = currentMillisecPerPixel * clickPos; 309 currentMillisec = currentMillisecPerPixel * clickPos;