diff options
author | Jon Reid | 2012-07-17 11:17:25 -0700 |
---|---|---|
committer | Jon Reid | 2012-07-17 11:17:25 -0700 |
commit | e327376d46d90d929c82ae3ab1a1c80cb863a9fc (patch) | |
tree | 9cb6d22eb67162cb00d45091d4287066338cbb24 /js/panels | |
parent | 53051672a62208fbc96957719d8285fac6431ed6 (diff) | |
download | ninja-e327376d46d90d929c82ae3ab1a1c80cb863a9fc.tar.gz |
Timeline: Bug fix: Now able to add first keyframe to an element using
function key.
Diffstat (limited to 'js/panels')
-rw-r--r-- | js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js b/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js index 981ddc22..c048bcb2 100644 --- a/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js +++ b/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js | |||
@@ -1346,6 +1346,7 @@ var TimelinePanel = exports.TimelinePanel = Montage.create(Component, { | |||
1346 | // We will no longer have multiple things selected, so wipe that info out | 1346 | // We will no longer have multiple things selected, so wipe that info out |
1347 | // if it isn't already gone. | 1347 | // if it isn't already gone. |
1348 | this.currentLayersSelected = false; | 1348 | this.currentLayersSelected = false; |
1349 | this.currentElementsSelected = false; | ||
1349 | 1350 | ||
1350 | for (i = arrElementsLength-1; i >= 0; i--) { | 1351 | for (i = arrElementsLength-1; i >= 0; i--) { |
1351 | var thingToPush = this.createLayerTemplate(); | 1352 | var thingToPush = this.createLayerTemplate(); |
@@ -1903,6 +1904,7 @@ var TimelinePanel = exports.TimelinePanel = Montage.create(Component, { | |||
1903 | // This is a paste action, because event.detail has more than one item in it. | 1904 | // This is a paste action, because event.detail has more than one item in it. |
1904 | this.createStageElementsAt(true, event.detail); | 1905 | this.createStageElementsAt(true, event.detail); |
1905 | } | 1906 | } |
1907 | this.updateLayerSelection(); | ||
1906 | } | 1908 | } |
1907 | }, | 1909 | }, |
1908 | 1910 | ||