diff options
Diffstat (limited to 'js/panels/Timeline/TimelinePanel.reel')
-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 | ||