Commit: 2a5f22c1afc9d143f3e1c784a0139e0d990d5a4a
Author: Campbell Barton
Date:   Fri Mar 12 15:35:13 2021 +1100
Branches: master
https://developer.blender.org/rB2a5f22c1afc9d143f3e1c784a0139e0d990d5a4a

Cleanup: set the window manager to the updated context on load

While this happened to be corrected by code that runs afterwards,
leaving this in an invalid state could cause problems in the future.

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

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 8357dfd7417..227520ed3f9 100644
--- a/source/blender/windowmanager/intern/wm_files.c
+++ b/source/blender/windowmanager/intern/wm_files.c
@@ -322,6 +322,9 @@ static void wm_window_match_replace_by_file_wm(bContext *C,
     SWAP(wmWindowManager *, oldwm, wm);
     BLI_addhead(current_wm_list, oldwm);
     BLI_addhead(readfile_wm_list, wm);
+
+    /* Don't leave the old pointer in the context. */
+    CTX_wm_manager_set(C, wm);
   }
 
   bool has_match = false;

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to