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:
authorAntonio Vazquez <blendergit@gmail.com>2020-04-28 19:42:26 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-04-28 19:42:26 +0300
commit44ac789a3a31947953836d98dcace3f37963848c (patch)
tree2e736e1828c5359dfe05906d36f0007c8562cb4c /source/blender/makesrna
parentcdd980cd5628346011cabfaa316e322433399c99 (diff)
GPencil: Remove redundant UVs text
It's clear you change the UVs
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_gpencil_modifier.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/source/blender/makesrna/intern/rna_gpencil_modifier.c b/source/blender/makesrna/intern/rna_gpencil_modifier.c
index f6102f852a1..1906c663c54 100644
--- a/source/blender/makesrna/intern/rna_gpencil_modifier.c
+++ b/source/blender/makesrna/intern/rna_gpencil_modifier.c
@@ -2166,18 +2166,19 @@ static void rna_def_modifier_gpenciltexture(BlenderRNA *brna)
};
static const EnumPropertyItem mode_items[] = {
- {STROKE, "STROKE", 0, "Stroke UVs", "Manipulate only stroke UVs"},
- {FILL, "FILL", 0, "Fill UVs", "Manipulate only fill UVs"},
+ {STROKE, "STROKE", 0, "Stroke", "Manipulate only stroke texture coordinates"},
+ {FILL, "FILL", 0, "Fill", "Manipulate only fill texture coordinates"},
{STROKE_AND_FILL,
"STROKE_AND_FILL",
0,
- "Stroke and Fill UVs",
- "Manipulate both stroke and fill UVs"},
+ "Stroke and Fill",
+ "Manipulate both stroke and fill texture coordinates"},
{0, NULL, 0, NULL, NULL},
};
srna = RNA_def_struct(brna, "TextureGpencilModifier", "GpencilModifier");
- RNA_def_struct_ui_text(srna, "Texture Modifier", "Transform stroke texture UVs Modifier");
+ RNA_def_struct_ui_text(
+ srna, "Texture Modifier", "Transform stroke texture coordinates Modifier");
RNA_def_struct_sdna(srna, "TextureGpencilModifierData");
RNA_def_struct_ui_icon(srna, ICON_TEXTURE);