From 0c7bfdf9a50de0c98e7e9ee55511c842148dae6b Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Wed, 4 Sep 2019 01:47:16 +0200 Subject: [PATCH] Fix T69467: Temporary Info Editor window crashes Code called editor creation twice, once for SPACE_INFO, once for SPACE_EMPTY. Caused by a incorrectly solved merge conflict. --- source/blender/windowmanager/intern/wm_window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/windowmanager/intern/wm_window.c b/source/blender/windowmanager/intern/wm_window.c index 00ed203c208..91173804b18 100644 --- a/source/blender/windowmanager/intern/wm_window.c +++ b/source/blender/windowmanager/intern/wm_window.c @@ -901,7 +901,7 @@ wmWindow *WM_window_open_temp(bContext *C, int x, int y, int sizex, int sizey, i space_type = SPACE_FILE; } else if (type == WM_WINDOW_INFO) { - ED_area_newspace(C, sa, SPACE_INFO, false); + space_type = SPACE_INFO; } else { BLI_assert(false);