[Bf-blender-cvs] [24edab0] master: Add a precision to 'show group color' tooltip, that fcurve/action editors option was confusing users a bit.

Bastien Montagne noreply at git.blender.org
Fri Feb 6 12:41:39 CET 2015


Commit: 24edab07ccd4bb3f89e83b295b71297dca0432ce
Author: Bastien Montagne
Date:   Fri Feb 6 12:38:33 2015 +0100
Branches: master
https://developer.blender.org/rB24edab07ccd4bb3f89e83b295b71297dca0432ce

Add a precision to 'show group color' tooltip, that fcurve/action editors option was confusing users a bit.

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

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

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

diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index fffddc2..ecbfb67 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -2840,7 +2840,8 @@ static void rna_def_space_dopesheet(BlenderRNA *brna)
 	prop = RNA_def_property(srna, "show_group_colors", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SACTION_NODRAWGCOLORS);
 	RNA_def_property_ui_text(prop, "Show Group Colors",
-	                         "Draw groups and channels with colors matching their corresponding groups");
+	                         "Draw groups and channels with colors matching their corresponding groups "
+	                         "(pose bones only currently)");
 	RNA_def_property_update(prop, NC_SPACE | ND_SPACE_DOPESHEET, NULL);
 	
 	/* editing */




More information about the Bf-blender-cvs mailing list