[Bf-blender-cvs] [44ac789a3a3] master: GPencil: Remove redundant UVs text

Antonio Vazquez noreply at git.blender.org
Tue Apr 28 18:43:17 CEST 2020


Commit: 44ac789a3a31947953836d98dcace3f37963848c
Author: Antonio Vazquez
Date:   Tue Apr 28 18:42:26 2020 +0200
Branches: master
https://developer.blender.org/rB44ac789a3a31947953836d98dcace3f37963848c

GPencil: Remove redundant UVs text

It's clear you change the UVs

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

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



More information about the Bf-blender-cvs mailing list