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:
authorAntonioya <blendergit@gmail.com>2019-02-27 10:50:29 +0300
committerAntonioya <blendergit@gmail.com>2019-02-27 10:50:29 +0300
commit4732f90a4f19954b56f2c2692e8be304359d1ec1 (patch)
tree16d735e0a90061ca43a516dc8b4e96872c55c44f /source/blender/draw/engines/gpencil/gpencil_engine.h
parent6155faf5bda861c929dbebaf022199580c64d2fe (diff)
GP: Use unique names for instance objects
When instance objects linked, the name could not be unique.
Diffstat (limited to 'source/blender/draw/engines/gpencil/gpencil_engine.h')
-rw-r--r--source/blender/draw/engines/gpencil/gpencil_engine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/draw/engines/gpencil/gpencil_engine.h b/source/blender/draw/engines/gpencil/gpencil_engine.h
index 2922f51e8cb..ed4915651f1 100644
--- a/source/blender/draw/engines/gpencil/gpencil_engine.h
+++ b/source/blender/draw/engines/gpencil/gpencil_engine.h
@@ -69,7 +69,7 @@ typedef struct tGPencilObjectCache {
struct Object *ob;
struct bGPdata *gpd;
int idx; /*original index, can change after sort */
- char name[66];
+ char *name;
/* effects */
bool has_fx;