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>2019-11-24 16:55:11 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-11-24 16:55:11 +0300
commitace5677ef0db996a4236073d1e1d6895fd5cf4bd (patch)
treed0ebc824718d8ef6f0aad260803e87228384023d /source/blender/blenkernel/intern/gpencil.c
parentf67a685ad9f6565a2c7054d73188bd2f3003a6df (diff)
Cleanup: spelling, repeated words
Diffstat (limited to 'source/blender/blenkernel/intern/gpencil.c')
-rw-r--r--source/blender/blenkernel/intern/gpencil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/gpencil.c b/source/blender/blenkernel/intern/gpencil.c
index 15532233a76..c51668ea68c 100644
--- a/source/blender/blenkernel/intern/gpencil.c
+++ b/source/blender/blenkernel/intern/gpencil.c
@@ -510,8 +510,8 @@ bGPDstroke *BKE_gpencil_add_stroke_existing_style(
bGPDframe *gpf, bGPDstroke *existing, int mat_idx, int totpoints, short thickness)
{
bGPDstroke *gps = BKE_gpencil_add_stroke(gpf, mat_idx, totpoints, thickness);
- /* Copy runtime color data so that strokes added in the modifier has the style.
- * There are depsgrapgh reference pointers inside,
+ /* Copy run-time color data so that strokes added in the modifier has the style.
+ * There are depsgraph reference pointers inside,
* change the copy function if interfere with future drawing implementation. */
memcpy(&gps->runtime, &existing->runtime, sizeof(bGPDstroke_Runtime));
return gps;