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:
authorTon Roosendaal <ton@blender.org>2010-11-30 21:46:34 +0300
committerTon Roosendaal <ton@blender.org>2010-11-30 21:46:34 +0300
commitc22dcbdd646ca3fd5c4441f7491f54a64e6caacc (patch)
tree7bb61c57dd44be3860a4b142ce14d194cc9e287e /source
parent236a11ca63cc736ca15e0ea8cdf377cefc82d4a3 (diff)
Bugfix #24976
Compositor: MultiLayer image node: on using layer menu, the entire multilayer file got freed, causing node to collapse and open full again after a composite.
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 45cc0394f16..0d7aec4563d 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -281,7 +281,8 @@ static void rna_Node_image_layer_update(Main *bmain, Scene *scene, PointerRNA *p
ImageUser *iuser= node->storage;
BKE_image_multilayer_index(ima->rr, iuser);
- BKE_image_signal(ima, iuser, IMA_SIGNAL_SRC_CHANGE);
+ /* do not call below function, it frees the multilayer exr */
+ /* BKE_image_signal(ima, iuser, IMA_SIGNAL_SRC_CHANGE); */
rna_Node_update(bmain, scene, ptr);
}