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:
authorTon Roosendaal <ton@blender.org>2006-07-03 13:49:12 +0400
committerTon Roosendaal <ton@blender.org>2006-07-03 13:49:12 +0400
commit21a5ea85cd02dd63ee4973a09032fd81d125ce63 (patch)
treeb6bd3c01e250ec197f7bd8f4ae91fe4d535410a5 /source/blender/src/resources.c
parentc21b1c78ebbf5d1c220c58b004779682583df95e (diff)
* Fix for Matt's fix!
The "generator" class for nodes then better completely disappears, also from theme color choices menu. Since there was room for it, made the generator themecolor to become color for 'Convertor' node types.
Diffstat (limited to 'source/blender/src/resources.c')
-rw-r--r--source/blender/src/resources.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/resources.c b/source/blender/src/resources.c
index ee3f36d21c3..06e2273b591 100644
--- a/source/blender/src/resources.c
+++ b/source/blender/src/resources.c
@@ -285,7 +285,7 @@ char *BIF_ThemeGetColorPtr(bTheme *btheme, int spacetype, int colorid)
cp= ts->syntaxn; break;
case TH_NODE_OPERATOR:
cp= ts->syntaxb; break;
- case TH_NODE_GENERATOR:
+ case TH_NODE_CONVERTOR:
cp= ts->syntaxv; break;
case TH_NODE_GROUP:
cp= ts->syntaxc; break;
@@ -664,7 +664,7 @@ char *BIF_ThemeColorsPup(int spacetype)
str += sprintf(str, "%%l|");
str += sprintf(str, "Node Backdrop %%x%d|", TH_NODE);
str += sprintf(str, "In/Out Node %%x%d|", TH_NODE_IN_OUT);
- str += sprintf(str, "Generator Node %%x%d|", TH_NODE_GENERATOR);
+ str += sprintf(str, "Convertor Node %%x%d|", TH_NODE_CONVERTOR);
str += sprintf(str, "Operator Node %%x%d|", TH_NODE_OPERATOR);
str += sprintf(str, "Group Node %%x%d|", TH_NODE_GROUP);
break;