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
path: root/source
diff options
context:
space:
mode:
authorRobin Allen <roblovski@gmail.com>2009-08-19 01:10:03 +0400
committerRobin Allen <roblovski@gmail.com>2009-08-19 01:10:03 +0400
commit80cbcfed2740d252551baf3542502a240a59129b (patch)
treeaf2979bbcd8ad3467164d81215080a4cb560a7e9 /source
parent05dec4a9d848c33e118c08d4e1067f8f10ebe901 (diff)
Fixed redraw issues in texture node tree.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/space_node/space_node.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/space_node/space_node.c b/source/blender/editors/space_node/space_node.c
index 07277fe878d..877f9133e4a 100644
--- a/source/blender/editors/space_node/space_node.c
+++ b/source/blender/editors/space_node/space_node.c
@@ -181,6 +181,9 @@ static void node_area_refresh(const struct bContext *C, struct ScrArea *sa)
if(scene->use_nodes)
snode_composite_job(C, sa);
}
+ else if(snode->treetype==NTREE_TEXTURE) {
+ ntreeTexUpdatePreviews(snode->nodetree);
+ }
}
}