[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [46851] trunk/blender/source/blender/ makesrna/intern/rna_nodetree.c: A few minor UI message fixes...

Bastien Montagne montagne29 at wanadoo.fr
Mon May 21 20:06:21 CEST 2012


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

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_nodetree.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_nodetree.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_nodetree.c	2012-05-21 17:39:56 UTC (rev 46850)
+++ trunk/blender/source/blender/makesrna/intern/rna_nodetree.c	2012-05-21 18:06:20 UTC (rev 46851)
@@ -3051,7 +3051,7 @@
 	RNA_def_property_float_sdna(prop, NULL, "rotation");
 	RNA_def_property_float_default(prop, 0.0f);
 	RNA_def_property_range(prop, -1000.0f, 1000.0f);
-	RNA_def_property_ui_text(prop, "Rotation", "Rotationangle of the box");
+	RNA_def_property_ui_text(prop, "Rotation", "Rotation angle of the box");
 	RNA_def_property_update(prop, NC_NODE|NA_EDITED, "rna_Node_update");
 }
 
@@ -3182,14 +3182,14 @@
 	RNA_def_property_float_sdna(prop, NULL, "startmidtones");
 	RNA_def_property_float_default(prop, 0.2f);
 	RNA_def_property_range(prop, 0, 1);
-	RNA_def_property_ui_text(prop, "Start of midtones", "Start of midtones");
+	RNA_def_property_ui_text(prop, "Midtones Start", "Start of midtones");
 	RNA_def_property_update(prop, NC_NODE|NA_EDITED, "rna_Node_update");
 
 	prop = RNA_def_property(srna, "midtones_end", PROP_FLOAT, PROP_NONE);
 	RNA_def_property_float_sdna(prop, NULL, "endmidtones");
 	RNA_def_property_float_default(prop, 0.7f);
 	RNA_def_property_range(prop, 0, 1);
-	RNA_def_property_ui_text(prop, "End of midtones", "end of midtones");
+	RNA_def_property_ui_text(prop, "Midtones End", "End of midtones");
 	RNA_def_property_update(prop, NC_NODE|NA_EDITED, "rna_Node_update");
 	
 	prop = RNA_def_property(srna, "master_saturation", PROP_FLOAT, PROP_NONE);
@@ -3347,7 +3347,7 @@
 	prop = RNA_def_property(srna, "tile_order", PROP_ENUM, PROP_NONE);
 	RNA_def_property_enum_sdna(prop, NULL, "custom1");
 	RNA_def_property_enum_items(prop, tileorder_items);
-	RNA_def_property_ui_text(prop, "Tile order", "tile order");
+	RNA_def_property_ui_text(prop, "Tile order", "Tile order");
 	RNA_def_property_update(prop, NC_NODE|NA_EDITED, "rna_Node_update");
 
 	prop = RNA_def_property(srna, "center_x", PROP_FLOAT, PROP_NONE);




More information about the Bf-blender-cvs mailing list