Image editor: not updating after image operation.

Fixes T96324, T96312, T96323
This commit is contained in:
Jeroen Bakker 2022-03-25 16:30:10 +01:00
parent c671a26637
commit 2fc77071b5
Notes: blender-bot 2023-02-14 11:18:07 +01:00
Referenced by issue #96323, Regression: Invert colour is not reflected in the image viewer until a UI change
Referenced by issue #96324, Regression: Resizing an image is not correctly reflected in the image editor until the UI is updated
Referenced by issue #96312, Regression: Image Editor Flip option isn't working
Referenced by issue #96241, 3.1: Potential candidates for corrective releases
1 changed files with 3 additions and 6 deletions

View File

@ -2790,8 +2790,7 @@ static int image_flip_exec(bContext *C, wmOperator *op)
ED_image_undo_push_end();
/* force GPU re-upload, all image is invalid. */
BKE_image_free_gputextures(ima);
BKE_image_partial_update_mark_full_update(ima);
WM_event_add_notifier(C, NC_IMAGE | NA_EDITED, ima);
@ -2910,8 +2909,7 @@ static int image_invert_exec(bContext *C, wmOperator *op)
ED_image_undo_push_end();
/* Force GPU re-upload, all image is invalid. */
BKE_image_free_gputextures(ima);
BKE_image_partial_update_mark_full_update(ima);
WM_event_add_notifier(C, NC_IMAGE | NA_EDITED, ima);
@ -3001,8 +2999,7 @@ static int image_scale_exec(bContext *C, wmOperator *op)
ED_image_undo_push_end();
/* Force GPU re-upload, all image is invalid. */
BKE_image_free_gputextures(ima);
BKE_image_partial_update_mark_full_update(ima);
DEG_id_tag_update(&ima->id, 0);
WM_event_add_notifier(C, NC_IMAGE | NA_EDITED, ima);