From 02b0a9623deb935d3382c0f09913f918ac809ce3 Mon Sep 17 00:00:00 2001 From: Variable <77773850+Variable-ind@users.noreply.github.com> Date: Thu, 18 May 2023 17:16:58 +0500 Subject: [PATCH] formatting --- src/UI/Timeline/AnimationTimeline.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UI/Timeline/AnimationTimeline.gd b/src/UI/Timeline/AnimationTimeline.gd index 0eeae2bd1..21cefa416 100644 --- a/src/UI/Timeline/AnimationTimeline.gd +++ b/src/UI/Timeline/AnimationTimeline.gd @@ -357,7 +357,7 @@ func copy_frames(indices := [], destination := -1) -> void: project.undo_redo.add_undo_property(project, "animation_tags", project.animation_tags) project.undo_redo.commit_action() # Select all the new frames so that it is easier to move/offset collectively if user wants - # For ease in animation workflow, the new current frame will be the first duplicated frame instead of the last + # To ease animation workflow, new current frame is the first copied frame instead of the last var range_start: int = copied_indices[-1] var range_end = copied_indices[0] var frame_diff_sign = sign(range_end - range_start)