[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [41512] trunk/blender/source/blender: Comments and other text editing:

Joshua Leung aligorith at gmail.com
Fri Nov 4 09:08:48 CET 2011


Revision: 41512
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=41512
Author:   aligorith
Date:     2011-11-04 08:08:47 +0000 (Fri, 04 Nov 2011)
Log Message:
-----------
Comments and other text editing:
* Renamed one of the two "File is Saved" entries, as having two
entries with the same name in the Datablocks viewer was confusing
* Edited the tooltip text for "speed" option for dupliframes to
clarify what it does (or what it's supposed to do)

Modified Paths:
--------------
    trunk/blender/source/blender/blenkernel/intern/constraint.c
    trunk/blender/source/blender/makesrna/intern/rna_main.c
    trunk/blender/source/blender/makesrna/intern/rna_object.c

Modified: trunk/blender/source/blender/blenkernel/intern/constraint.c
===================================================================
--- trunk/blender/source/blender/blenkernel/intern/constraint.c	2011-11-04 08:06:46 UTC (rev 41511)
+++ trunk/blender/source/blender/blenkernel/intern/constraint.c	2011-11-04 08:08:47 UTC (rev 41512)
@@ -447,7 +447,8 @@
 	}
 	else {
 		/* when not in EditMode, use the 'final' derived mesh, depsgraph
-		 * ensures we build with CD_MDEFORMVERT layer */
+		 * ensures we build with CD_MDEFORMVERT layer 
+		 */
 		dm = (DerivedMesh *)ob->derivedFinal;
 	}
 	

Modified: trunk/blender/source/blender/makesrna/intern/rna_main.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_main.c	2011-11-04 08:06:46 UTC (rev 41511)
+++ trunk/blender/source/blender/makesrna/intern/rna_main.c	2011-11-04 08:08:47 UTC (rev 41512)
@@ -324,7 +324,7 @@
 	prop= RNA_def_property(srna, "is_dirty", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_clear_flag(prop, PROP_EDITABLE);
 	RNA_def_property_boolean_funcs(prop, "rna_Main_is_dirty_get", NULL);
-	RNA_def_property_ui_text(prop, "File is Saved", "Have recent edits been saved to disk");
+	RNA_def_property_ui_text(prop, "File Has Unsaved Changes", "Have recent edits been saved to disk");
 
 	prop= RNA_def_property(srna, "is_saved", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_clear_flag(prop, PROP_EDITABLE);

Modified: trunk/blender/source/blender/makesrna/intern/rna_object.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_object.c	2011-11-04 08:06:46 UTC (rev 41511)
+++ trunk/blender/source/blender/makesrna/intern/rna_object.c	2011-11-04 08:08:47 UTC (rev 41512)
@@ -2226,7 +2226,7 @@
 
 	prop= RNA_def_property(srna, "use_dupli_frames_speed", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_negative_sdna(prop, NULL, "transflag", OB_DUPLINOSPEED);
-	RNA_def_property_ui_text(prop, "Dupli Frames Speed", "Set dupliframes to use the frame"); // TODO, better descriptio!
+	RNA_def_property_ui_text(prop, "Dupli Frames Speed", "Set dupliframes to use the current frame instead of parent curve's evaluation time")
 	RNA_def_property_update(prop, NC_OBJECT|ND_DRAW, "rna_Object_internal_update");
 
 	prop= RNA_def_property(srna, "use_dupli_vertices_rotation", PROP_BOOLEAN, PROP_NONE);




More information about the Bf-blender-cvs mailing list