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:
authorMatt Ebb <matt@mke3.net>2006-06-16 08:32:39 +0400
committerMatt Ebb <matt@mke3.net>2006-06-16 08:32:39 +0400
commitcf9e420ad3d2da3ff9488873243dcf6bab4984e2 (patch)
treeedb09ed89618758df24c4efe4e662ba4647397d1 /source/blender/src/resources.c
parent8008783e2770b60070b0f34b639d02a6a8b777e7 (diff)
* Added header pulldown menus for the Node Editor. Also tweaked colours and some
of the menu organisation, consolidating the redundant 'Generators' with 'Input'.
Diffstat (limited to 'source/blender/src/resources.c')
-rw-r--r--source/blender/src/resources.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/src/resources.c b/source/blender/src/resources.c
index 6fc2f28f76b..ee3f36d21c3 100644
--- a/source/blender/src/resources.c
+++ b/source/blender/src/resources.c
@@ -514,9 +514,9 @@ void BIF_InitTheme(void)
btheme->tnode= btheme->tv3d;
SETCOL(btheme->tnode.edge_select, 255, 255, 255, 255);
SETCOL(btheme->tnode.syntaxl, 150, 150, 150, 255); /* TH_NODE, backdrop */
- SETCOL(btheme->tnode.syntaxn, 95, 110, 145, 255); /* in/output */
- SETCOL(btheme->tnode.syntaxb, 135, 125, 120, 255); /* operator */
- SETCOL(btheme->tnode.syntaxv, 120, 120, 120, 255); /* generator */
+ SETCOL(btheme->tnode.syntaxn, 129, 131, 144, 255); /* in/output */
+ SETCOL(btheme->tnode.syntaxb, 127,127,127, 255); /* operator */
+ SETCOL(btheme->tnode.syntaxv, 142, 138, 145, 255); /* generator */
SETCOL(btheme->tnode.syntaxc, 120, 145, 120, 255); /* group */
}