[Bf-blender-cvs] [40828b96fc4] greasepencil-refactor: GPencil: Fix typo errors

Antonio Vazquez noreply at git.blender.org
Thu Jan 9 19:20:23 CET 2020


Commit: 40828b96fc4377f34adf480240151067c533bec0
Author: Antonio Vazquez
Date:   Thu Jan 9 19:20:19 2020 +0100
Branches: greasepencil-refactor
https://developer.blender.org/rB40828b96fc4377f34adf480240151067c533bec0

GPencil: Fix typo errors

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

M	source/blender/makesrna/intern/rna_space.c

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

diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 7cac6f74bae..e30fdc4e004 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -3716,7 +3716,7 @@ static void rna_def_space_view3d_overlay(BlenderRNA *brna)
   prop = RNA_def_property(srna, "use_gpencil_show_directions", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "gp_flag", V3D_GP_SHOW_STROKE_DIRECTION);
   RNA_def_property_ui_text(prop,
-                           "Strokes Directions",
+                           "Stroke Direction",
                            "Show stroke drawing direction with a bigger green dot (start) "
                            "and smaller red dot (end) points");
   RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, "rna_GPencil_update");
@@ -3724,7 +3724,7 @@ static void rna_def_space_view3d_overlay(BlenderRNA *brna)
   prop = RNA_def_property(srna, "use_gpencil_show_material_name", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "gp_flag", V3D_GP_SHOW_MATERIAL_NAME);
   RNA_def_property_ui_text(
-      prop, "Show Material Name", "Show material name assigned to each stroke");
+      prop, "Stroke Material Name", "Show material name assigned to each stroke");
   RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, "rna_GPencil_update");
 
   prop = RNA_def_property(srna, "gpencil_grid_opacity", PROP_FLOAT, PROP_NONE);



More information about the Bf-blender-cvs mailing list