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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-07-02 16:52:37 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-07-02 16:52:37 +0400
commit08225cf67080f4349a5565c49194024aaba242b0 (patch)
tree9ee4132e3260bc159ebdf5c18b38fbd8854fe81f /source/blender/makesrna/intern/rna_material.c
parent418011907c26a87d21c8ed8935cd6a5b673a9b06 (diff)
Fix #35954: missing cycles viewport render update when changing the object
or material pass index.
Diffstat (limited to 'source/blender/makesrna/intern/rna_material.c')
-rw-r--r--source/blender/makesrna/intern/rna_material.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_material.c b/source/blender/makesrna/intern/rna_material.c
index fceb4e0a4d4..b30bdaf9009 100644
--- a/source/blender/makesrna/intern/rna_material.c
+++ b/source/blender/makesrna/intern/rna_material.c
@@ -1818,7 +1818,7 @@ void RNA_def_material(BlenderRNA *brna)
prop = RNA_def_property(srna, "pass_index", PROP_INT, PROP_UNSIGNED);
RNA_def_property_int_sdna(prop, NULL, "index");
RNA_def_property_ui_text(prop, "Pass Index", "Index number for the IndexMA render pass");
- RNA_def_property_update(prop, NC_OBJECT, NULL);
+ RNA_def_property_update(prop, NC_OBJECT, "rna_Material_update");
/* flags */