[Bf-blender-cvs] [f4424727de9] master: Outliner: fix sync select on read file without loading UI

Nathan Craddock noreply at git.blender.org
Thu Aug 29 04:53:03 CEST 2019


Commit: f4424727de948270ef3344ea8ce37451ab1ea957
Author: Nathan Craddock
Date:   Wed Aug 28 20:46:50 2019 -0600
Branches: master
https://developer.blender.org/rBf4424727de948270ef3344ea8ce37451ab1ea957

Outliner: fix sync select on read file without loading UI

Tag for a complete sync when loading a file with load UI disabled.

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

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 3751c76c571..ae704142d5a 100644
--- a/source/blender/windowmanager/intern/wm_files.c
+++ b/source/blender/windowmanager/intern/wm_files.c
@@ -101,6 +101,7 @@
 #include "ED_datafiles.h"
 #include "ED_fileselect.h"
 #include "ED_image.h"
+#include "ED_outliner.h"
 #include "ED_screen.h"
 #include "ED_view3d.h"
 #include "ED_util.h"
@@ -1971,6 +1972,10 @@ static int wm_homefile_read_exec(bContext *C, wmOperator *op)
     }
   }
 
+  if (G.fileflags & G_FILE_NO_UI) {
+    ED_outliner_select_sync_from_all_tag(C);
+  }
+
   return OPERATOR_FINISHED;
 }
 
@@ -2226,6 +2231,9 @@ static int wm_open_mainfile__open(bContext *C, wmOperator *op)
   BKE_report_print_level_set(op->reports, RPT_WARNING);
 
   if (success) {
+    if (G.fileflags & G_FILE_NO_UI) {
+      ED_outliner_select_sync_from_all_tag(C);
+    }
     return OPERATOR_FINISHED;
   }
   else {



More information about the Bf-blender-cvs mailing list