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
path: root/source
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-02-13 15:16:33 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-02-13 15:16:33 +0300
commit9250f15f7467fcb3cd7ee8459740df26d94eeff9 (patch)
tree9610a3258c0bd0b3688e5f96d3c26d17fb56931f /source
parent6c9aa76d2141d527eee086db8398db4b3cd5bb84 (diff)
Fix #20378: object modifier property drivers not updating.
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_access.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c
index b939598ed44..8be14be78f4 100644
--- a/source/blender/makesrna/intern/rna_access.c
+++ b/source/blender/makesrna/intern/rna_access.c
@@ -1161,7 +1161,7 @@ static void rna_property_update(bContext *C, Main *bmain, Scene *scene, PointerR
else {
/* WARNING! This is so property drivers update the display!
* not especially nice */
- DAG_id_flush_update(ptr->id.data, OB_RECALC_OB);
+ DAG_id_flush_update(ptr->id.data, OB_RECALC);
WM_main_add_notifier(NC_WINDOW, NULL);
}