[Bf-blender-cvs] [24904301e58] master: Fix: Wrong UI Label for mesh cache play mode

Aaron Carlisle noreply at git.blender.org
Mon Jun 8 02:17:28 CEST 2020


Commit: 24904301e58b2022f46f13cfab3d1aa0ad176c8c
Author: Aaron Carlisle
Date:   Sun Jun 7 19:09:35 2020 -0400
Branches: master
https://developer.blender.org/rB24904301e58b2022f46f13cfab3d1aa0ad176c8c

Fix: Wrong UI Label for mesh cache play mode

===================================================================

M	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);



More information about the Bf-blender-cvs mailing list