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:
authorBastien Montagne <bastien@blender.org>2021-09-23 12:28:39 +0300
committerBastien Montagne <bastien@blender.org>2021-09-23 12:28:39 +0300
commitb63f777950239518f6bbeeaec3d01d6cb03068f1 (patch)
treea776ac728591d4612afeef51b491f689b67a9095 /source/blender/blenkernel/intern/gpencil.c
parentb801e86f8b6719cd902707a95dbf0dd1576e061b (diff)
Add missing GPencil `IDTYPE_FLAGS_APPEND_IS_REUSABLE` flag.
Forgot that one in rB794c2828af60. Noted by Antonio Vazquez (@antoniov), thanks.
Diffstat (limited to 'source/blender/blenkernel/intern/gpencil.c')
-rw-r--r--source/blender/blenkernel/intern/gpencil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/gpencil.c b/source/blender/blenkernel/intern/gpencil.c
index 82a44afbbb1..ed84694a919 100644
--- a/source/blender/blenkernel/intern/gpencil.c
+++ b/source/blender/blenkernel/intern/gpencil.c
@@ -319,7 +319,7 @@ IDTypeInfo IDType_ID_GD = {
.name = "GPencil",
.name_plural = "grease_pencils",
.translation_context = BLT_I18NCONTEXT_ID_GPENCIL,
- .flags = 0,
+ .flags = IDTYPE_FLAGS_APPEND_IS_REUSABLE,
.init_data = NULL,
.copy_data = greasepencil_copy_data,