[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [51729] trunk/blender/source/blender/ editors/animation/anim_channels_defines.c: Tweak for Group channels using Custom Bone Colors

Joshua Leung aligorith at gmail.com
Mon Oct 29 12:11:37 CET 2012


Revision: 51729
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=51729
Author:   aligorith
Date:     2012-10-29 11:11:37 +0000 (Mon, 29 Oct 2012)
Log Message:
-----------
Tweak for Group channels using Custom Bone Colors

Use the "Selected" color instead of the "Active" color when the group has active
status. This should help make the text just a little more legible, though in
some cases it still might not be enough.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/animation/anim_channels_defines.c

Modified: trunk/blender/source/blender/editors/animation/anim_channels_defines.c
===================================================================
--- trunk/blender/source/blender/editors/animation/anim_channels_defines.c	2012-10-29 11:08:10 UTC (rev 51728)
+++ trunk/blender/source/blender/editors/animation/anim_channels_defines.c	2012-10-29 11:11:37 UTC (rev 51729)
@@ -752,7 +752,7 @@
 		
 		/* highlight only for active */
 		if (ale->flag & AGRP_ACTIVE)
-			copy_v3_v3_char((char *)cp, agrp->cs.active);
+			copy_v3_v3_char((char *)cp, agrp->cs.select);
 		else
 			copy_v3_v3_char((char *)cp, agrp->cs.solid);
 		




More information about the Bf-blender-cvs mailing list