[Bf-blender-cvs] [eb6e852] master: RNA: correct tips

Campbell Barton noreply at git.blender.org
Mon Oct 12 03:40:02 CEST 2015


Commit: eb6e8521c2026c3483b0368022f10fa083bf41e8
Author: Campbell Barton
Date:   Mon Oct 12 12:19:27 2015 +1100
Branches: master
https://developer.blender.org/rBeb6e8521c2026c3483b0368022f10fa083bf41e8

RNA: correct tips

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

M	source/blender/makesrna/intern/rna_actuator.c
M	source/blender/makesrna/intern/rna_object.c
M	source/blender/makesrna/intern/rna_object_force.c

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

diff --git a/source/blender/makesrna/intern/rna_actuator.c b/source/blender/makesrna/intern/rna_actuator.c
index a207596..01ca352 100644
--- a/source/blender/makesrna/intern/rna_actuator.c
+++ b/source/blender/makesrna/intern/rna_actuator.c
@@ -1724,7 +1724,7 @@ static void rna_def_game_actuator(BlenderRNA *brna)
 	prop = RNA_def_property(srna, "filename", PROP_STRING, PROP_FILEPATH);
 	RNA_def_property_ui_text(prop, "File",
 	                         "The file to use depending on the mode (e.g., the blend file to load or a destination "
-	                         "for saving a screenshot). Use the \"//\" prefix for a relative path.");
+	                         "for saving a screenshot). Use the \"//\" prefix for a relative path");
 	RNA_def_property_update(prop, NC_LOGIC, NULL);
 	/*XXX to do: an operator that calls file_browse with relative_path on and blender filtering active */
 }
diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c
index 99af8c0..8255c22 100644
--- a/source/blender/makesrna/intern/rna_object.c
+++ b/source/blender/makesrna/intern/rna_object.c
@@ -1777,7 +1777,7 @@ static void rna_def_object_game_settings(BlenderRNA *brna)
 	RNA_def_property_ui_range(prop, 1, 10, 1, 1);
 	RNA_def_property_int_default(prop, 1);
 	RNA_def_property_ui_text(prop, "Max Jumps",
-	                         "The maximum number of jumps the character can make before it hits the ground.");
+	                         "The maximum number of jumps the character can make before it hits the ground");
 
 	/* Collision Masks */
 	prop = RNA_def_property(srna, "collision_group", PROP_BOOLEAN, PROP_LAYER_MEMBER);
diff --git a/source/blender/makesrna/intern/rna_object_force.c b/source/blender/makesrna/intern/rna_object_force.c
index 75becb3..2766540 100644
--- a/source/blender/makesrna/intern/rna_object_force.c
+++ b/source/blender/makesrna/intern/rna_object_force.c
@@ -1639,7 +1639,7 @@ static void rna_def_softbody(BlenderRNA *brna)
 	RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
 	RNA_def_property_range(prop, 0.0f, 1.0f);
 	RNA_def_property_ui_text(prop, "Goal Default",
-	                         "Default Goal (vertex target position) value, when no Vertex Group used");
+	                         "Default Goal (vertex target position) value");
 	RNA_def_property_update(prop, 0, "rna_softbody_update");
 	
 	prop = RNA_def_property(srna, "goal_spring", PROP_FLOAT, PROP_NONE);




More information about the Bf-blender-cvs mailing list