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:
authorCampbell Barton <ideasman42@gmail.com>2012-08-14 16:39:12 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-08-14 16:39:12 +0400
commit59fedc6b7c315cbf95035d7add1cdb6384eb13e7 (patch)
tree1f52baade85919117d263f001c4d42a8b85bdcf4 /source/blender/compositor/nodes/COM_BlurNode.cpp
parent34ebdcacfc26b7c42aa6c0aa4c03bf8aee72abac (diff)
rename blur `Reference` to `Variable Size`, improve tooltip
Diffstat (limited to 'source/blender/compositor/nodes/COM_BlurNode.cpp')
-rw-r--r--source/blender/compositor/nodes/COM_BlurNode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/compositor/nodes/COM_BlurNode.cpp b/source/blender/compositor/nodes/COM_BlurNode.cpp
index 059b01e2c05..93ef002c8d7 100644
--- a/source/blender/compositor/nodes/COM_BlurNode.cpp
+++ b/source/blender/compositor/nodes/COM_BlurNode.cpp
@@ -59,7 +59,7 @@ void BlurNode::convertToOperations(ExecutionSystem *graph, CompositorContext *co
graph->addOperation(operationfgb);
addPreviewOperation(graph, operationfgb->getOutputSocket());
}
- else if (editorNode->custom1 & CMP_NODEFLAG_BLUR_REFERENCE) {
+ else if (editorNode->custom1 & CMP_NODEFLAG_BLUR_VARIABLE_SIZE) {
MathAddOperation *clamp = new MathAddOperation();
SetValueOperation *zero = new SetValueOperation();
addLink(graph, zero->getOutputSocket(), clamp->getInputSocket(1));