Fix: Wrong UI Label for mesh cache play mode

This commit is contained in:
Aaron Carlisle 2020-06-07 19:09:35 -04:00
parent 112c86fd5d
commit 24904301e5
1 changed files with 1 additions and 1 deletions

View File

@ -5870,7 +5870,7 @@ static void rna_def_modifier_meshcache(BlenderRNA *brna)
prop = RNA_def_property(srna, "play_mode", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_sdna(prop, NULL, "play_mode");
RNA_def_property_enum_items(prop, prop_time_play_items);
RNA_def_property_ui_text(prop, "Time Mode", "");
RNA_def_property_ui_text(prop, "Play Mode", "");
RNA_def_property_update(prop, 0, "rna_Modifier_update");
prop = RNA_def_property(srna, "deform_mode", PROP_ENUM, PROP_NONE);