From 55059af01d8bdea7d9c3d3ab313956dd85c106f8 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 12 Jan 2021 14:19:32 +1100 Subject: Fix T84455: Circle select tool cursor draws in overlapping regions --- release/scripts/startup/bl_ui/space_toolsystem_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/space_toolsystem_common.py b/release/scripts/startup/bl_ui/space_toolsystem_common.py index 748b5733433..12ec863327c 100644 --- a/release/scripts/startup/bl_ui/space_toolsystem_common.py +++ b/release/scripts/startup/bl_ui/space_toolsystem_common.py @@ -1004,7 +1004,7 @@ def _activate_by_item(context, space_type, item, index, *, as_fallback=False): if item.draw_cursor is not None: def handle_fn(context, item, tool, xy): item.draw_cursor(context, tool, xy) - handle = WindowManager.draw_cursor_add(handle_fn, (context, item, tool), space_type) + handle = WindowManager.draw_cursor_add(handle_fn, (context, item, tool), space_type, 'WINDOW') handle_map[space_type] = handle -- cgit v1.2.3