Fix T41939: Dupliface: Inherit scale doesn't update viewport render.

Render needs un object update it seems...
This commit is contained in:
Bastien Montagne 2014-09-24 19:48:16 +02:00
parent fc3753b8f6
commit f1976cbde7
Notes: blender-bot 2023-02-14 10:03:33 +01:00
Referenced by issue #41939, Dupliface: Inherit scale didn't update viewport render
1 changed files with 1 additions and 1 deletions

View File

@ -2624,7 +2624,7 @@ static void rna_def_object(BlenderRNA *brna)
RNA_def_property_float_sdna(prop, NULL, "dupfacesca");
RNA_def_property_range(prop, 0.001f, 10000.0f);
RNA_def_property_ui_text(prop, "Dupli Faces Scale", "Scale the DupliFace objects");
RNA_def_property_update(prop, NC_OBJECT | ND_DRAW, NULL);
RNA_def_property_update(prop, NC_OBJECT | ND_DRAW, "rna_Object_internal_update");
prop = RNA_def_property(srna, "dupli_group", PROP_POINTER, PROP_NONE);
RNA_def_property_pointer_sdna(prop, NULL, "dup_group");