From 88f5c999f22cd32f2adce4aca2ce04ca4744e4cd Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Fri, 22 May 2009 07:02:09 +0000 Subject: [PATCH] 2.5 RNA: * Added missing Subdivision Type Notifier. --- source/blender/makesrna/intern/rna_modifier.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c index 35541a228ea..38325246aef 100644 --- a/source/blender/makesrna/intern/rna_modifier.c +++ b/source/blender/makesrna/intern/rna_modifier.c @@ -286,6 +286,7 @@ static void rna_def_property_subdivision_common(StructRNA *srna, const char type RNA_def_property_enum_sdna(prop, NULL, type); RNA_def_property_enum_items(prop, prop_subdivision_type_items); RNA_def_property_ui_text(prop, "Subdivision Type", "Selects type of subdivision algorithm."); + RNA_def_property_update(prop, NC_OBJECT|ND_MODIFIER, "rna_Modifier_update"); } static void rna_def_modifier_subsurf(BlenderRNA *brna)