From 2a5f22c1afc9d143f3e1c784a0139e0d990d5a4a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 12 Mar 2021 15:35:13 +1100 Subject: 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. --- source/blender/windowmanager/intern/wm_files.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source/blender/windowmanager/intern') 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; -- cgit v1.2.3