rna name which wasnt set to change but should have been: eff_group -> effector_group

This commit is contained in:
Campbell Barton 2010-08-21 06:40:46 +00:00
parent 93ffe7d7f1
commit 5c3d2b13b8
2 changed files with 2 additions and 2 deletions

@ -140,7 +140,7 @@ class PHYSICS_PT_smoke_groups(PhysicButtonsPanel, bpy.types.Panel):
col.prop(group, "fluid_group", text="")
#col.label(text="Effector Group:")
#col.prop(group, "eff_group", text="")
#col.prop(group, "effector_group", text="")
col = split.column()
col.label(text="Collision Group:")

@ -189,7 +189,7 @@ static void rna_def_smoke_domain_settings(BlenderRNA *brna)
RNA_def_property_ui_text(prop, "Fluid Group", "Limit fluid objects to this group");
RNA_def_property_update(prop, NC_OBJECT|ND_MODIFIER, "rna_Smoke_reset_dependancy");
prop= RNA_def_property(srna, "eff_group", PROP_POINTER, PROP_NONE);
prop= RNA_def_property(srna, "effector_group", PROP_POINTER, PROP_NONE);
RNA_def_property_pointer_sdna(prop, NULL, "eff_group");
RNA_def_property_struct_type(prop, "Group");
RNA_def_property_flag(prop, PROP_EDITABLE);