Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-04-02 18:42:30 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-04-02 18:42:30 +0300
commite9aa0d1e48f32a4194efaf5559939f794dbc1652 (patch)
tree84e0fbb8cb605d89fabcc2c9f3e2a83d61fc7b32 /source/blender/makesrna/intern/rna_constraint.c
parentcefc058dd8daa185ff226873638d0c39bc3327f7 (diff)
Cleanup: Remove space at the end of description
Diffstat (limited to 'source/blender/makesrna/intern/rna_constraint.c')
-rw-r--r--source/blender/makesrna/intern/rna_constraint.c2
1 files changed, 1 insertions, 1 deletions
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);