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-02-18 18:57:46 +0300
committerTon Roosendaal <ton@blender.org>2006-02-18 18:57:46 +0300
commitf4ddc2fde29950fcd7c24f74551ef86a54a520f2 (patch)
treed1f7b3e18b935d2287843aa3963cdb85f277ae9b /source/blender/src/drawnode.c
parent1ea90994744cb95d83717bb7df972c693f9e9583 (diff)
Quick change in Hue/Saturation Node: made the central Hue value 0.5, to
make applying changes easier. Saturation slider goes to 2.0 now. Fix: rendering compositing nodes without scene crashed in header stats drawing.
Diffstat (limited to 'source/blender/src/drawnode.c')
-rw-r--r--source/blender/src/drawnode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/drawnode.c b/source/blender/src/drawnode.c
index dd98a877bcb..9c7dd8657cd 100644
--- a/source/blender/src/drawnode.c
+++ b/source/blender/src/drawnode.c
@@ -909,7 +909,7 @@ static int node_composit_buts_hue_sat(uiBlock *block, bNodeTree *ntree, bNode *n
&nhs->hue, 0.0f, 1.0f, 100, 0, "");
uiDefButF(block, NUMSLI, B_NODE_EXEC+node->nr, "Sat ",
butr->xmin, butr->ymin, butr->xmax-butr->xmin, 19,
- &nhs->sat, 0.0f, 1.0f, 100, 0, "");
+ &nhs->sat, 0.0f, 2.0f, 100, 0, "");
}
return 38;
}