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:
authorCampbell Barton <ideasman42@gmail.com>2016-07-31 07:21:16 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-07-31 07:23:14 +0300
commit6fffe6cfcc1b3bef89b9e7a5546897276c71c3d8 (patch)
tree714c2653a972e28a7bdd97e4e6e12abc72e732ea /source/blender/makesrna/intern/rna_fcurve.c
parent3fe7aacdf7f87ef9293ae4d8c4ce1dd9373e7011 (diff)
Improve description for use_self py-driver option
Diffstat (limited to 'source/blender/makesrna/intern/rna_fcurve.c')
-rw-r--r--source/blender/makesrna/intern/rna_fcurve.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_fcurve.c b/source/blender/makesrna/intern/rna_fcurve.c
index 08c0f98e45b..c521e93d33e 100644
--- a/source/blender/makesrna/intern/rna_fcurve.c
+++ b/source/blender/makesrna/intern/rna_fcurve.c
@@ -1604,8 +1604,8 @@ static void rna_def_channeldriver(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_self", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", DRIVER_FLAG_USE_SELF);
RNA_def_property_ui_text(prop, "Use Self",
- "Pass 'self' argument to Py-Driver, "
- "so it can access the data referenced by the driver (object, bone, etc...)");
+ "Include a 'self' variable in the name-space, "
+ "so drivers can easily reference the data being modified (object, bone, etc...)");
/* State Info (for Debugging) */
prop = RNA_def_property(srna, "is_valid", PROP_BOOLEAN, PROP_NONE);