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/intern/rna_rna.c
parent6365ddcab559bd0abdfb86e04834d3d1ecbe6e95 (diff)
Cleanup: forgot to rename RNA prop flag to override_static...
Diffstat (limited to 'source/blender/makesrna/intern/rna_rna.c')
-rw-r--r--source/blender/makesrna/intern/rna_rna.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_rna.c b/source/blender/makesrna/intern/rna_rna.c
index 3bcdd971ed2..a34894fb123 100644
--- a/source/blender/makesrna/intern/rna_rna.c
+++ b/source/blender/makesrna/intern/rna_rna.c
@@ -570,7 +570,7 @@ static int rna_Property_overridable_get(PointerRNA *ptr)
{
PropertyRNA *prop = (PropertyRNA *)ptr->data;
- return (prop->flag & PROP_OVERRIDABLE) != 0;
+ return (prop->flag & PROP_OVERRIDABLE_STATIC) != 0;
}
static int rna_Property_use_output_get(PointerRNA *ptr)