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:
authorJeroen Bakker <jeroen@blender.org>2022-03-01 13:04:09 +0300
committerFabian Schempp <fabianschempp@googlemail.com>2022-04-11 01:30:22 +0300
commit06fceb8d8bca1c0330bd68b1ed506e2617158be2 (patch)
treea6dbe400eef963e9661b134ef63fc6a48658f3f7 /source/blender/blenkernel/intern/image.c
parent506996c314be1b1a48bfee23cd5b08ebd2c66304 (diff)
Fix T96030: Update Image editor after reload.
Diffstat (limited to 'source/blender/blenkernel/intern/image.c')
-rw-r--r--source/blender/blenkernel/intern/image.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/image.c b/source/blender/blenkernel/intern/image.c
index fa63f99d3f1..817e7bb9685 100644
--- a/source/blender/blenkernel/intern/image.c
+++ b/source/blender/blenkernel/intern/image.c
@@ -3569,6 +3569,7 @@ static void image_tag_reload(Image *ima, ID *iuser_id, ImageUser *iuser, void *c
/* Must copy image user changes to CoW data-block. */
DEG_id_tag_update(iuser_id, ID_RECALC_COPY_ON_WRITE);
}
+ BKE_image_partial_update_mark_full_update(ima);
}
}