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-11-20 12:37:01 +0300
committerTon Roosendaal <ton@blender.org>2006-11-20 12:37:01 +0300
commita667b79b35b497c9da747b0b5facdc7395934637 (patch)
tree6dbc627705257da398d71aac4058d4d142df4d60 /source/blender/src/editnode.c
parent228b94dc8951c49efd0ce37943a84d87ff6c228b (diff)
Small usability tweaks in Compositor:
- After making a Group, internal socket values are now copied to the group node, so an execute will give identical results - After ungrouping, the cyclic dependency tagging didn't work well in all cases, showing a red noodle line and giving composite errors. For time being solved by calling the NodeSort twice. - Viewer nodes now get previews updated always (used to be only the active) Note: this is not for previews inside of groups!
Diffstat (limited to 'source/blender/src/editnode.c')
-rw-r--r--source/blender/src/editnode.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/src/editnode.c b/source/blender/src/editnode.c
index d3135f5b412..9f37248783e 100644
--- a/source/blender/src/editnode.c
+++ b/source/blender/src/editnode.c
@@ -531,7 +531,6 @@ void node_ungroup(SpaceNode *snode)
else {
if(nodeGroupUnGroup(snode->edittree, gnode)) {
- ntreeSolveOrder(snode->edittree);
BIF_undo_push("Deselect all nodes");
allqueue(REDRAWNODE, 0);
}