Commit: 14980c9b3ad849340cad2cce5aa475228ff0c2b4
Author: Jesse Yurkovich
Date:   Thu Jul 7 02:36:54 2022 -0700
Branches: master
https://developer.blender.org/rB14980c9b3ad849340cad2cce5aa475228ff0c2b4

Fix: Save modified images during file close

Regressed in the following commit due to an inverted conditional:
{rB1159b63a07fd2cbc7fc48e162d57721c9c85b3f6}

Differential Revision: https://developer.blender.org/D15389

===================================================================

M       source/blender/editors/space_image/image_ops.c

===================================================================

diff --git a/source/blender/editors/space_image/image_ops.c 
b/source/blender/editors/space_image/image_ops.c
index b77bdc11ca5..49420e9a2a1 100644
--- a/source/blender/editors/space_image/image_ops.c
+++ b/source/blender/editors/space_image/image_ops.c
@@ -2391,7 +2391,7 @@ bool ED_image_save_all_modified(const bContext *C, 
ReportList *reports)
         if (image_has_valid_path(ima)) {
           ImageSaveOptions opts;
           Scene *scene = CTX_data_scene(C);
-          if (!BKE_image_save_options_init(&opts, bmain, scene, ima, NULL, 
false, false)) {
+          if (BKE_image_save_options_init(&opts, bmain, scene, ima, NULL, 
false, false)) {
             bool saved_successfully = BKE_image_save(reports, bmain, ima, 
NULL, &opts);
             ok = ok && saved_successfully;
           }

_______________________________________________
Bf-blender-cvs mailing list
Bf-blender-cvs@blender.org
List details, subscription details or unsubscribe:
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to