[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [47111] trunk/blender/source/blender: A few minor UI message fixes...

Bastien Montagne montagne29 at wanadoo.fr
Mon May 28 16:01:42 CEST 2012


Revision: 47111
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=47111
Author:   mont29
Date:     2012-05-28 14:01:42 +0000 (Mon, 28 May 2012)
Log Message:
-----------
A few minor UI message fixes...

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_node/node_edit.c
    trunk/blender/source/blender/makesrna/intern/rna_nodetree.c
    trunk/blender/source/blender/windowmanager/intern/wm_operators.c

Modified: trunk/blender/source/blender/editors/space_node/node_edit.c
===================================================================
--- trunk/blender/source/blender/editors/space_node/node_edit.c	2012-05-28 10:39:22 UTC (rev 47110)
+++ trunk/blender/source/blender/editors/space_node/node_edit.c	2012-05-28 14:01:42 UTC (rev 47111)
@@ -4055,7 +4055,7 @@
 {
 	/* identifiers */
 	ot->name = "Join Nodes";
-	ot->description = "Attaches selected nodes to a new common frame";
+	ot->description = "Attach selected nodes to a new common frame";
 	ot->idname = "NODE_OT_join";
 
 	/* api callbacks */
@@ -4125,7 +4125,7 @@
 {
 	/* identifiers */
 	ot->name = "Attach Nodes";
-	ot->description = "Attaches active node to a frame";
+	ot->description = "Attach active node to a frame";
 	ot->idname = "NODE_OT_attach";
 
 	/* api callbacks */
@@ -4194,7 +4194,7 @@
 {
 	/* identifiers */
 	ot->name = "Detach Nodes";
-	ot->description = "Detaches selected nodes from parents";
+	ot->description = "Detach selected nodes from parents";
 	ot->idname = "NODE_OT_detach";
 
 	/* api callbacks */

Modified: trunk/blender/source/blender/makesrna/intern/rna_nodetree.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_nodetree.c	2012-05-28 10:39:22 UTC (rev 47110)
+++ trunk/blender/source/blender/makesrna/intern/rna_nodetree.c	2012-05-28 14:01:42 UTC (rev 47111)
@@ -4007,7 +4007,8 @@
 
 	prop = RNA_def_property(srna, "chunk_size", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "chunksize");
-	RNA_def_property_ui_text(prop, "Chunksize", "Max size of a tile. Smaller values gives better distribution of multiple threads, but more overhead");
+	RNA_def_property_ui_text(prop, "Chunksize", "Max size of a tile (smaller values gives better distribution "
+	                                            "of multiple threads, but more overhead)");
 	RNA_def_property_range(prop, 32, 1024);
 
 	prop = RNA_def_property(srna, "use_opencl", PROP_BOOLEAN, PROP_NONE);

Modified: trunk/blender/source/blender/windowmanager/intern/wm_operators.c
===================================================================
--- trunk/blender/source/blender/windowmanager/intern/wm_operators.c	2012-05-28 10:39:22 UTC (rev 47110)
+++ trunk/blender/source/blender/windowmanager/intern/wm_operators.c	2012-05-28 14:01:42 UTC (rev 47111)
@@ -922,7 +922,7 @@
 {
 	RNA_def_boolean(ot->srna, "extend", 0, "Extend", "Extend selection instead of deselecting everything first");
 	RNA_def_boolean(ot->srna, "deselect", 0, "Deselect", "Remove from selection");
-	RNA_def_boolean(ot->srna, "toggle", 0, "Toggle Selection", "Toggles selection");
+	RNA_def_boolean(ot->srna, "toggle", 0, "Toggle Selection", "Toggle the selection");
 }
 
 void WM_operator_properties_gesture_straightline(wmOperatorType *ot, int cursor)




More information about the Bf-blender-cvs mailing list