Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors/animation/anim_channels_edit.c')
-rw-r--r--source/blender/editors/animation/anim_channels_edit.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/source/blender/editors/animation/anim_channels_edit.c b/source/blender/editors/animation/anim_channels_edit.c
index d5f68e44ad8..560b14bfd9a 100644
--- a/source/blender/editors/animation/anim_channels_edit.c
+++ b/source/blender/editors/animation/anim_channels_edit.c
@@ -2735,13 +2735,11 @@ static bool rename_anim_channels(bAnimContext *ac, int channel_index)
/* ok if we can get name property to edit from this channel */
if (acf->name_prop(ale, &ptr, &prop)) {
- /* actually showing the rename textfield is done on redraw,
+ /* Actually showing the rename text-field is done on redraw,
* so here we just store the index of this channel in the
- * dopesheet data, which will get utilized when drawing the
- * channel...
+ * dope-sheet data, which will get utilized when drawing the channel.
*
- * +1 factor is for backwards compat issues
- */
+ * +1 factor is for backwards compatibility issues. */
if (ac->ads) {
ac->ads->renameIndex = channel_index + 1;
success = true;