Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2020-06-08 02:09:35 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-06-08 02:09:35 +0300
commit24904301e58b2022f46f13cfab3d1aa0ad176c8c (patch)
treef16998c5abe84a8dc29792eabff81695af947712 /source/blender/makesrna/intern/rna_modifier.c
parent112c86fd5d5bb1e54f782d9c17a85212272b4f3e (diff)
Fix: Wrong UI Label for mesh cache play mode
Diffstat (limited to 'source/blender/makesrna/intern/rna_modifier.c')
-rw-r--r--source/blender/makesrna/intern/rna_modifier.c2
1 files changed, 1 insertions, 1 deletions
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);