[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [58446] trunk/blender: Fix descriptions for mask selection operators and use less ambiguous " letter-spacing" term

Sv. Lockal lockalsash at gmail.com
Sat Jul 20 14:24:54 CEST 2013


Revision: 58446
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=58446
Author:   lockal
Date:     2013-07-20 12:24:53 +0000 (Sat, 20 Jul 2013)
Log Message:
-----------
Fix descriptions for mask selection operators and use less ambiguous "letter-spacing" term

Modified Paths:
--------------
    trunk/blender/release/scripts/startup/bl_ui/properties_data_curve.py
    trunk/blender/source/blender/editors/mask/mask_select.c

Modified: trunk/blender/release/scripts/startup/bl_ui/properties_data_curve.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/properties_data_curve.py	2013-07-20 10:24:16 UTC (rev 58445)
+++ trunk/blender/release/scripts/startup/bl_ui/properties_data_curve.py	2013-07-20 12:24:53 UTC (rev 58446)
@@ -362,7 +362,7 @@
 
         col = split.column(align=True)
         col.label(text="Spacing:")
-        col.prop(text, "space_character", text="Character")
+        col.prop(text, "space_character", text="Letter")
         col.prop(text, "space_word", text="Word")
         col.prop(text, "space_line", text="Line")
 

Modified: trunk/blender/source/blender/editors/mask/mask_select.c
===================================================================
--- trunk/blender/source/blender/editors/mask/mask_select.c	2013-07-20 10:24:16 UTC (rev 58445)
+++ trunk/blender/source/blender/editors/mask/mask_select.c	2013-07-20 12:24:53 UTC (rev 58446)
@@ -470,7 +470,7 @@
 {
 	/* identifiers */
 	ot->name = "Border Select";
-	ot->description = "Select markers using border selection";
+	ot->description = "Select curve points using border selection";
 	ot->idname = "MASK_OT_select_border";
 
 	/* api callbacks */
@@ -521,7 +521,7 @@
 
 				float screen_co[2];
 
-				/* marker in screen coords */
+				/* point in screen coords */
 				ED_mask_point_pos__reverse(sa, ar,
 				                           point_deform->bezt.vec[1][0], point_deform->bezt.vec[1][1],
 				                           &screen_co[0], &screen_co[1]);
@@ -569,7 +569,7 @@
 {
 	/* identifiers */
 	ot->name = "Lasso Select";
-	ot->description = "Select markers using lasso selection";
+	ot->description = "Select curve points using lasso selection";
 	ot->idname = "MASK_OT_select_lasso";
 
 	/* api callbacks */
@@ -670,7 +670,7 @@
 {
 	/* identifiers */
 	ot->name = "Circle Select";
-	ot->description = "Select markers using circle selection";
+	ot->description = "Select curve points using circle selection";
 	ot->idname = "MASK_OT_select_circle";
 
 	/* api callbacks */
@@ -784,7 +784,7 @@
 	/* identifiers */
 	ot->name = "Select Linked All";
 	ot->idname = "MASK_OT_select_linked";
-	ot->description = "Select all vertices linked to the active mesh";
+	ot->description = "Select all curve points linked to already selected ones";
 
 	/* api callbacks */
 	ot->exec = mask_select_linked_exec;




More information about the Bf-blender-cvs mailing list