[Bf-blender-cvs] [b5a6635f371] blender-v2.80-release: Fix T67334: Blender does not exit after saving

Jacques Lucke noreply at git.blender.org
Wed Jul 24 16:28:41 CEST 2019


Commit: b5a6635f3715bdc749a9171695d91a68740d61a3
Author: Jacques Lucke
Date:   Tue Jul 23 14:32:32 2019 +0200
Branches: blender-v2.80-release
https://developer.blender.org/rBb5a6635f3715bdc749a9171695d91a68740d61a3

Fix T67334: Blender does not exit after saving

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

M	source/blender/windowmanager/intern/wm_files.c

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

diff --git a/source/blender/windowmanager/intern/wm_files.c b/source/blender/windowmanager/intern/wm_files.c
index 48b09b0d329..fd3e7a2d3fc 100644
--- a/source/blender/windowmanager/intern/wm_files.c
+++ b/source/blender/windowmanager/intern/wm_files.c
@@ -2956,7 +2956,8 @@ static void wm_block_file_close_save(bContext *C, void *arg_block, void *arg_dat
   wmWindow *win = CTX_wm_window(C);
   UI_popup_block_close(C, win, arg_block);
 
-  if (save_images_when_file_is_closed) {
+  int modified_images_count = ED_image_save_all_modified_info(C, NULL);
+  if (modified_images_count > 0 && save_images_when_file_is_closed) {
     if (ED_image_should_save_modified(C)) {
       ReportList *reports = CTX_wm_reports(C);
       ED_image_save_all_modified(C, reports);



More information about the Bf-blender-cvs mailing list