[Bf-blender-cvs] [e9aa0d1e48f] blender2.7: Cleanup: Remove space at the end of description

Sergey Sharybin noreply at git.blender.org
Tue Apr 2 17:47:18 CEST 2019


Commit: e9aa0d1e48f32a4194efaf5559939f794dbc1652
Author: Sergey Sharybin
Date:   Tue Apr 2 17:42:30 2019 +0200
Branches: blender2.7
https://developer.blender.org/rBe9aa0d1e48f32a4194efaf5559939f794dbc1652

Cleanup: Remove space at the end of description

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

M	source/blender/makesrna/intern/rna_constraint.c

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

diff --git a/source/blender/makesrna/intern/rna_constraint.c b/source/blender/makesrna/intern/rna_constraint.c
index 99e6b03f3fb..bddc4136622 100644
--- a/source/blender/makesrna/intern/rna_constraint.c
+++ b/source/blender/makesrna/intern/rna_constraint.c
@@ -2546,7 +2546,7 @@ void RNA_def_constraint(BlenderRNA *brna)
 	/* TODO: setting this to true must ensure that all others in stack are turned off too... */
 	prop = RNA_def_property(srna, "active", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", CONSTRAINT_ACTIVE);
-	RNA_def_property_ui_text(prop, "Active", "Constraint is the one being edited ");
+	RNA_def_property_ui_text(prop, "Active", "Constraint is the one being edited");
 
 	prop = RNA_def_property(srna, "is_proxy_local", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", CONSTRAINT_PROXY_LOCAL);



More information about the Bf-blender-cvs mailing list