* New Smoke Modifier icon was missing in the Smoke RNA struct.
This commit is contained in:
Thomas Dinges
2009-09-07 11:51:19 +00:00
parent a83aa92e80
commit fcf1040473

View File

@@ -1568,6 +1568,7 @@ static void rna_def_modifier_smoke(BlenderRNA *brna)
srna= RNA_def_struct(brna, "SmokeModifier", "Modifier");
RNA_def_struct_ui_text(srna, "Smoke Modifier", "Smoke simulation modifier.");
RNA_def_struct_sdna(srna, "SmokeModifierData");
RNA_def_struct_ui_icon(srna, ICON_MOD_SMOKE);
prop= RNA_def_property(srna, "domain_settings", PROP_POINTER, PROP_NONE);
RNA_def_property_pointer_sdna(prop, NULL, "domain");