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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-01-31 20:00:46 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-01-31 20:01:47 +0300
commit78daa53e89e702a1382aa9bedc8bfeb2a6ca33be (patch)
treee5760473b02177078f2ebfe1fb394c00694fd9ef /source/blender
parenta37e889aebde18c130b1a9285219f03eed95a23d (diff)
Fix T61072: missing viewport update when setting render border in image editor.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/space_image/image_ops.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_image/image_ops.c b/source/blender/editors/space_image/image_ops.c
index cc1dcf03e29..8a63180f023 100644
--- a/source/blender/editors/space_image/image_ops.c
+++ b/source/blender/editors/space_image/image_ops.c
@@ -3761,6 +3761,7 @@ static int render_border_exec(bContext *C, wmOperator *op)
scene->r.mode |= R_BORDER;
}
+ DEG_id_tag_update(&scene->id, ID_RECALC_COPY_ON_WRITE);
WM_event_add_notifier(C, NC_SCENE | ND_RENDER_OPTIONS, NULL);
return OPERATOR_FINISHED;