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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-12-04 12:10:53 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-12-04 12:10:53 +0400
commit89d91f5a7d5187bb6fcdf5a4895cd5100a020f6a (patch)
tree8574df33d4504f6a66df5658e6ef54d767881a63 /source/blender/editors/space_node/node_add.c
parenta9d889cba412eaa4e02806e50b631ae621521e23 (diff)
Fix #33402: Compositor crashes when drag-dropping multilayer exr
There was a missing image reload signal in node creation by drag-dropping, which lead to incorrectly set image type. Also fixed misusage of IMB_freeImBuf used to release buffer acquired by BKE_image_acquire_ibuf.
Diffstat (limited to 'source/blender/editors/space_node/node_add.c')
-rw-r--r--source/blender/editors/space_node/node_add.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/space_node/node_add.c b/source/blender/editors/space_node/node_add.c
index 04d2947ce89..96ac716f383 100644
--- a/source/blender/editors/space_node/node_add.c
+++ b/source/blender/editors/space_node/node_add.c
@@ -386,6 +386,9 @@ static int node_add_file_exec(bContext *C, wmOperator *op)
node->id = (ID *)ima;
id_us_plus(node->id);
+ BKE_image_signal(ima, NULL, IMA_SIGNAL_RELOAD);
+ WM_event_add_notifier(C, NC_IMAGE | NA_EDITED, ima);
+
snode_notify(C, snode);
snode_dag_update(C, snode);