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:
authorThomas Dinges <blender@dingto.org>2013-10-01 02:53:56 +0400
committerThomas Dinges <blender@dingto.org>2013-10-01 02:53:56 +0400
commite28bd0d3024f6a21adbc1aa74fa87865ae613046 (patch)
treed10e8f57d9e3a421a80b1122413d772c39380031
parent7d344dd3a009a344deccb0108fc32a1901442e4c (diff)
* Change NA_EDITED notifier to NA_ADDED, as suggested by Sergey. (r60414 follow up)
-rw-r--r--source/blender/editors/space_image/image_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_image/image_ops.c b/source/blender/editors/space_image/image_ops.c
index 2da109d281b..a7dee3fab93 100644
--- a/source/blender/editors/space_image/image_ops.c
+++ b/source/blender/editors/space_image/image_ops.c
@@ -1804,7 +1804,7 @@ static int image_new_exec(bContext *C, wmOperator *op)
BKE_image_signal(ima, (sima) ? &sima->iuser : NULL, IMA_SIGNAL_USER_NEW_IMAGE);
- WM_event_add_notifier(C, NC_IMAGE | NA_EDITED, ima);
+ WM_event_add_notifier(C, NC_IMAGE | NA_ADDED, ima);
return OPERATOR_FINISHED;
}