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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-04-01 16:33:09 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-04-01 16:33:09 +0300
commite8c3c922481be4c468cc86b76f9554bd4504b22c (patch)
treee16a7d5abf2dab2535a3e6b43179e9ae3dc8b901 /source/blender/editors/gpencil/gpencil_edit.c
parent46eb5a0b8a4f3a7826b5e5a1a11e114e09037dba (diff)
Cleanup: Spelling
Diffstat (limited to 'source/blender/editors/gpencil/gpencil_edit.c')
-rw-r--r--source/blender/editors/gpencil/gpencil_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/gpencil/gpencil_edit.c b/source/blender/editors/gpencil/gpencil_edit.c
index be63d5cd016..b6499200e01 100644
--- a/source/blender/editors/gpencil/gpencil_edit.c
+++ b/source/blender/editors/gpencil/gpencil_edit.c
@@ -794,7 +794,7 @@ static void gpencil_add_move_points(bGPDframe *gpf, bGPDstroke *gps)
const bool do_last = ((pt_last->flag & GP_SPOINT_SELECT) && (pt_start != pt_last));
const bool do_stroke = (do_first || do_last);
- /* review points in the midle of stroke to create new strokes */
+ /* review points in the middle of stroke to create new strokes */
for (int i = 0; i < gps->totpoints; i++) {
/* skip first and last point */
if ((i == 0) || (i == gps->totpoints - 1)) {