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
path: root/source
diff options
context:
space:
mode:
authorAntonio Vazquez <blendergit@gmail.com>2019-08-25 18:13:13 +0300
committerAntonio Vazquez <blendergit@gmail.com>2019-08-25 18:13:13 +0300
commit63533a0c7ded4b03e1da94e877765b2cb5d485e6 (patch)
tree513507191dbc58616603fb78a6fdc38743b39204 /source
parenta67f218b541791a2e4468813794f5bcff1e08a88 (diff)
Cleanup: Clarify alloc comment text
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/gpencil/gpencil_brush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/gpencil/gpencil_brush.c b/source/blender/editors/gpencil/gpencil_brush.c
index 7b8cfc58a5f..5d2558c2fff 100644
--- a/source/blender/editors/gpencil/gpencil_brush.c
+++ b/source/blender/editors/gpencil/gpencil_brush.c
@@ -497,7 +497,7 @@ static void gp_brush_grab_stroke_init(tGP_BrushEditData *gso, bGPDstroke *gps)
data->points = MEM_callocN(sizeof(int) * data->capacity, "GP Stroke Grab Indices");
data->weights = MEM_callocN(sizeof(float) * data->capacity, "GP Stroke Grab Weights");
- data->rot_eval = MEM_callocN(sizeof(float) * data->capacity, "GP Stroke Grab X");
+ data->rot_eval = MEM_callocN(sizeof(float) * data->capacity, "GP Stroke Grab Rotations");
/* hook up to the cache */
BLI_ghash_insert(gso->stroke_customdata, gps, data);