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:
authorJoshua Leung <aligorith@gmail.com>2008-04-28 15:40:38 +0400
committerJoshua Leung <aligorith@gmail.com>2008-04-28 15:40:38 +0400
commitdfbc6213b5d45ec792e76edc13f8fdaf45015043 (patch)
tree9bad1dbe37c7326eaeafd17ce5954a2de13f8312 /source/blender/src/drawaction.c
parent2706c622318ab0f60dcddbe92b429eda81fbd8eb (diff)
== Action Editor - Group Colors ==
Made option to show group colors the default. If this is too colourful for you, disable it in the View menu.
Diffstat (limited to 'source/blender/src/drawaction.c')
-rw-r--r--source/blender/src/drawaction.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/drawaction.c b/source/blender/src/drawaction.c
index 459a9983793..1a742440e9b 100644
--- a/source/blender/src/drawaction.c
+++ b/source/blender/src/drawaction.c
@@ -637,7 +637,7 @@ static void draw_channel_names(void)
* - use 3 shades of color group/standard colour for 3 indention level
* - only use group colors if allowed to, and if actually feasible
*/
- if ( (G.saction->flag & SACTION_DRAWGCOLORS) &&
+ if ( !(G.saction->flag & SACTION_NODRAWGCOLORS) &&
(grp) && (grp->customCol) )
{
char cp[3];