[Bf-blender-cvs] [8cf2b38] master: Freestyle: Fix for UI text of the "use_tips" line style property.

Tamito Kajiyama noreply at git.blender.org
Tue Jul 22 05:25:23 CEST 2014


Commit: 8cf2b3879a7f89cf2d0776c6d8ae7b22d7da2072
Author: Tamito Kajiyama
Date:   Sun Jul 20 16:22:25 2014 +0900
Branches: master
https://developer.blender.org/rB8cf2b3879a7f89cf2d0776c6d8ae7b22d7da2072

Freestyle: Fix for UI text of the "use_tips" line style property.

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

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

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

diff --git a/source/blender/makesrna/intern/rna_linestyle.c b/source/blender/makesrna/intern/rna_linestyle.c
index 3ede815..50b888b 100644
--- a/source/blender/makesrna/intern/rna_linestyle.c
+++ b/source/blender/makesrna/intern/rna_linestyle.c
@@ -500,7 +500,7 @@ static void rna_def_linestyle_mtex(BlenderRNA *brna)
 
 	prop = RNA_def_property(srna, "use_tips", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "texflag", MTEX_TIPS);
-	RNA_def_property_ui_text(prop, "Use tips", "Lower half of the texture is for tips of the stroke");
+	RNA_def_property_ui_text(prop, "Use Tips", "Lower half of the texture is for tips of the stroke");
 	RNA_def_property_update(prop, 0, "rna_LineStyle_update");
 
 	prop = RNA_def_property(srna, "texture_coords", PROP_ENUM, PROP_NONE);




More information about the Bf-blender-cvs mailing list