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 <montagne29@wanadoo.fr>2017-12-01 19:33:56 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2017-12-01 19:42:13 +0300
commita5454e8711c8b9728a4f7523bf92de60b945357a (patch)
treee0e7a0c24ec0514bca4ce663d8003b6fe5e2d105 /source/blender/makesrna/RNA_types.h
parent6365ddcab559bd0abdfb86e04834d3d1ecbe6e95 (diff)
Cleanup: forgot to rename RNA prop flag to override_static...
Diffstat (limited to 'source/blender/makesrna/RNA_types.h')
-rw-r--r--source/blender/makesrna/RNA_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/RNA_types.h b/source/blender/makesrna/RNA_types.h
index a3bba1984c1..47aebbc13e7 100644
--- a/source/blender/makesrna/RNA_types.h
+++ b/source/blender/makesrna/RNA_types.h
@@ -177,7 +177,7 @@ typedef enum PropertyFlag {
PROP_ANIMATABLE = (1 << 1),
/* Means the property can be overriden by a local 'proxy' of some linked datablock. */
- PROP_OVERRIDABLE = (1 << 2),
+ PROP_OVERRIDABLE_STATIC = (1 << 2),
/* This flag means when the property's widget is in 'textedit' mode, it will be updated
* after every typed char, instead of waiting final validation. Used e.g. for text searchbox.