Fix broken Alembic tests following motion blur commit

The tests were broken because of an extra call to
RNA_def_struct_name_property which set the name of the velocity
attribute to be the string used to identify CacheFiles in
bpy.data.cachefiles.
This commit is contained in:
Kévin Dietrich 2020-08-04 16:10:51 +02:00
parent 7bad5e0d18
commit b1976d131c
1 changed files with 0 additions and 1 deletions

View File

@ -180,7 +180,6 @@ static void rna_def_cachefile(BlenderRNA *brna)
RNA_def_property_ui_text(prop,
"Velocity Attribute",
"Name of the Alembic attribute used for generating motion blur data");
RNA_def_struct_name_property(srna, prop);
RNA_def_property_update(prop, 0, "rna_CacheFile_update");
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);