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:
authorAntonioya <blendergit@gmail.com>2018-10-24 17:59:13 +0300
committerAntonioya <blendergit@gmail.com>2018-10-24 17:59:13 +0300
commit9691c32d3819ec55970fb8102af2a5f7b522ff99 (patch)
tree546a999af8ebfe21f854cb3f64e3a79e936392e8 /source/blender/makesrna/intern
parent735d6cb8d87cc3bb8ba9a727b95480502dd0f2b1 (diff)
GP: Rename Fixed type in Time modifier
Diffstat (limited to 'source/blender/makesrna/intern')
-rw-r--r--source/blender/makesrna/intern/rna_gpencil_modifier.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_gpencil_modifier.c b/source/blender/makesrna/intern/rna_gpencil_modifier.c
index 4bc74d2d39f..37bcd83e8b7 100644
--- a/source/blender/makesrna/intern/rna_gpencil_modifier.c
+++ b/source/blender/makesrna/intern/rna_gpencil_modifier.c
@@ -113,7 +113,7 @@ static const EnumPropertyItem rna_enum_gpencil_lockshift_items[] = {
static const EnumPropertyItem rna_enum_time_mode_items[] = {
{ GP_TIME_MODE_NORMAL, "NORMAL", 0, "Normal", "Apply offset in normal animation direction" },
{ GP_TIME_MODE_REVERSE, "REVERSE", 0, "Reverse", "Apply offset in reverse animation direction" },
- { GP_TIME_MODE_FIX, "FIX", 0, "Fix", "Keep frame and do not change with time" },
+ { GP_TIME_MODE_FIX, "FIX", 0, "Fixed Frame", "Keep frame and do not change with time" },
{ 0, NULL, 0, NULL, NULL }
};