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:
authorJacques Lucke <jacques@blender.org>2020-10-07 13:35:58 +0300
committerJacques Lucke <jacques@blender.org>2020-10-07 13:35:58 +0300
commit65a6caafce9f1cde7e128786daa90342c192900c (patch)
tree3b5f46753773a0499a6bb2df4f9f24220a1bb44c /source/blender/blenkernel/intern/brush.c
parente2526e338f12832c1ab945907f5be075124fcf24 (diff)
IDTypeInfo: add flag to indicate that ID has no animation data
This is part of T75724. Reviewers: mont29 Differential Revision: https://developer.blender.org/D9134
Diffstat (limited to 'source/blender/blenkernel/intern/brush.c')
-rw-r--r--source/blender/blenkernel/intern/brush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/brush.c b/source/blender/blenkernel/intern/brush.c
index 3e45d7377b2..f559689608f 100644
--- a/source/blender/blenkernel/intern/brush.c
+++ b/source/blender/blenkernel/intern/brush.c
@@ -363,7 +363,7 @@ IDTypeInfo IDType_ID_BR = {
.name = "Brush",
.name_plural = "brushes",
.translation_context = BLT_I18NCONTEXT_ID_BRUSH,
- .flags = 0,
+ .flags = IDTYPE_FLAGS_NO_ANIMDATA,
.init_data = brush_init_data,
.copy_data = brush_copy_data,