Skip to content

Commit

Permalink
[Animation Editor] - Fixed issue where pasting keyframes with multipl…
Browse files Browse the repository at this point in the history
…e tracks shifted the keyframes over as they were pasted.
  • Loading branch information
Tape-Worm committed Aug 23, 2021
1 parent c40fb84 commit 06af312
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -728,10 +728,10 @@ async Task<bool> CopyMoveAsync(CopyMoveRedoArgs args, CopyMoveUndoArgs undo)

try
{
int destIndex = args.DestKeyIndex;

foreach (TrackKeySelection trackSel in args.Keys)
{
int destIndex = args.DestKeyIndex;

if (trackSel.Track.KeyType == AnimationTrackKeyType.Texture2D)
{
ShowWaitPanel(Resources.GORANM_TEXT_PLEASE_WAIT);
Expand Down

0 comments on commit 06af312

Please sign in to comment.