From 6f4612a7cc428a8e0c8266e50f52bcda3615a586 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kai=20J=C3=A6gersen?= Date: Mon, 9 Mar 2020 16:56:12 +0100 Subject: Python API: allow overriding context.workspace for workspace operators Differential Revision: https://developer.blender.org/D6867 --- source/blender/editors/screen/workspace_edit.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source/blender/editors/screen/workspace_edit.c') diff --git a/source/blender/editors/screen/workspace_edit.c b/source/blender/editors/screen/workspace_edit.c index e61b42bf99f..47f6324ee0d 100644 --- a/source/blender/editors/screen/workspace_edit.c +++ b/source/blender/editors/screen/workspace_edit.c @@ -266,8 +266,7 @@ static WorkSpace *workspace_context_get(bContext *C) return (WorkSpace *)id; } - wmWindow *win = CTX_wm_window(C); - return WM_window_get_active_workspace(win); + return CTX_wm_workspace(C); } static bool workspace_context_poll(bContext *C) -- cgit v1.2.3