From 24904301e58b2022f46f13cfab3d1aa0ad176c8c Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Sun, 7 Jun 2020 19:09:35 -0400 Subject: Fix: Wrong UI Label for mesh cache play mode --- source/blender/makesrna/intern/rna_modifier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/makesrna/intern/rna_modifier.c') diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c index b9334679784..d4aeae2cfe0 100644 --- a/source/blender/makesrna/intern/rna_modifier.c +++ b/source/blender/makesrna/intern/rna_modifier.c @@ -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); -- cgit v1.2.3