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:
authorThomas Dinges <blender@dingto.org>2013-04-06 16:07:42 +0400
committerThomas Dinges <blender@dingto.org>2013-04-06 16:07:42 +0400
commit2ed2226ee753cc6a7a19806d99772efa61af897f (patch)
tree0227d1c343add397887af175ef2c32b282223a23 /source/blender/nodes/texture/nodes/node_texture_mixRgb.c
parent92b6365e219a341800dcfc0582045fa366ae6222 (diff)
Node UI:
* After PyNodes merge, many node sockets had sliders, instead of the arrow buttons (as the PROP_FACTOR subtype now actually was used). Change those back now, after artists feedback.
Diffstat (limited to 'source/blender/nodes/texture/nodes/node_texture_mixRgb.c')
-rw-r--r--source/blender/nodes/texture/nodes/node_texture_mixRgb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/texture/nodes/node_texture_mixRgb.c b/source/blender/nodes/texture/nodes/node_texture_mixRgb.c
index 12ac27f26b7..b482a76ae8e 100644
--- a/source/blender/nodes/texture/nodes/node_texture_mixRgb.c
+++ b/source/blender/nodes/texture/nodes/node_texture_mixRgb.c
@@ -35,7 +35,7 @@
/* **************** MIX RGB ******************** */
static bNodeSocketTemplate inputs[] = {
- { SOCK_FLOAT, 1, N_("Factor"), 0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, PROP_FACTOR },
+ { SOCK_FLOAT, 1, N_("Factor"), 0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, PROP_NONE },
{ SOCK_RGBA, 1, N_("Color1"), 0.5f, 0.5f, 0.5f, 1.0f },
{ SOCK_RGBA, 1, N_("Color2"), 0.5f, 0.5f, 0.5f, 1.0f },
{ -1, 0, "" }