From 44ac789a3a31947953836d98dcace3f37963848c Mon Sep 17 00:00:00 2001 From: Antonio Vazquez Date: Tue, 28 Apr 2020 18:42:26 +0200 Subject: GPencil: Remove redundant UVs text It's clear you change the UVs --- source/blender/makesrna/intern/rna_gpencil_modifier.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'source/blender/makesrna/intern/rna_gpencil_modifier.c') 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); -- cgit v1.2.3