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:
authorCampbell Barton <ideasman42@gmail.com>2020-12-15 04:27:16 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-12-15 04:34:25 +0300
commit001f2c5d50b496708ef12de2c083686996b678d9 (patch)
tree1fb94cae6d535e9fe313744d1f3daa7fd1330c02 /source/blender/editors/gpencil/gpencil_data.c
parente995296acbd9587efbed0b7f2cbb7bde28ea00f1 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/editors/gpencil/gpencil_data.c')
-rw-r--r--source/blender/editors/gpencil/gpencil_data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/gpencil/gpencil_data.c b/source/blender/editors/gpencil/gpencil_data.c
index 093f1fa89c7..aff109eb98e 100644
--- a/source/blender/editors/gpencil/gpencil_data.c
+++ b/source/blender/editors/gpencil/gpencil_data.c
@@ -1332,8 +1332,8 @@ static int gpencil_merge_layer_exec(bContext *C, wmOperator *op)
}
/* Read all frames from merge layer and add any missing in destination layer,
- * copying all previous strokes to keep the image equals. Need to do it in a separated
- * loop to avoid strokes acumulation. */
+ * copying all previous strokes to keep the image equals.
+ * Need to do it in a separated loop to avoid strokes accumulation. */
LISTBASE_FOREACH (bGPDframe *, gpf_src, &gpl_src->frames) {
/* Try to find frame in destination layer hash table. */
bGPDframe *gpf_dst = BLI_ghash_lookup(gh_frames_dst, POINTER_FROM_INT(gpf_src->framenum));