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:
authorSybren A. Stüvel <sybren@blender.org>2020-03-05 12:46:52 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-03-05 12:46:52 +0300
commit6665ce8951b2110e5dbd7126aae3c120bb6205e5 (patch)
treeec0dcf8825e64bf1ab731753aeb891380122fa9f /source/blender/editors/animation/anim_deps.c
parente5f98c79b0ed3a103e5e82948d22df185e2c53a2 (diff)
Cleanup: Clarified comment
No functional changes.
Diffstat (limited to 'source/blender/editors/animation/anim_deps.c')
-rw-r--r--source/blender/editors/animation/anim_deps.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/animation/anim_deps.c b/source/blender/editors/animation/anim_deps.c
index 0a93351fefd..98fcb9c5ce5 100644
--- a/source/blender/editors/animation/anim_deps.c
+++ b/source/blender/editors/animation/anim_deps.c
@@ -368,8 +368,8 @@ void ANIM_animdata_update(bAnimContext *ac, ListBase *anim_data)
if (ale->update & ANIM_UPDATE_ORDER) {
ale->update &= ~ANIM_UPDATE_ORDER;
if (gpl) {
- /* While correct & we could enable it: 'posttrans_gpd_clean'
- * currently handles as well as removing doubles. */
+ /* While correct & we could enable it: 'posttrans_gpd_clean' currently
+ * both sorts and removes doubles, so this is not necessary here. */
// gpencil_sort_frames(gpl);
}
}
@@ -389,8 +389,8 @@ void ANIM_animdata_update(bAnimContext *ac, ListBase *anim_data)
if (ale->update & ANIM_UPDATE_ORDER) {
ale->update &= ~ANIM_UPDATE_ORDER;
if (masklay) {
- /* While correct & we could enable it: 'posttrans_mask_clean'
- * currently handles as well as removing doubles. */
+ /* While correct & we could enable it: 'posttrans_mask_clean' currently
+ * both sorts and removes doubles, so this is not necessary here. */
// BKE_mask_layer_shape_sort(masklay);
}
}