Fix #35954: missing cycles viewport render update when changing the object
or material pass index.
This commit is contained in:
@@ -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 */
|
||||
|
||||
|
||||
@@ -2395,7 +2395,7 @@ static void rna_def_object(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 IndexOB render pass");
|
||||
RNA_def_property_update(prop, NC_OBJECT, NULL);
|
||||
RNA_def_property_update(prop, NC_OBJECT, "rna_Object_internal_update");
|
||||
|
||||
prop = RNA_def_property(srna, "color", PROP_FLOAT, PROP_COLOR);
|
||||
RNA_def_property_float_sdna(prop, NULL, "col");
|
||||
|
||||
Reference in New Issue
Block a user