Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-01-12 06:19:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-12 06:19:32 +0300
commit55059af01d8bdea7d9c3d3ab313956dd85c106f8 (patch)
treea3bb69cddf48e8ba63d0ab03fb8bb193c7b225a8
parentacbda123ad08eec59f9393da12d68bc971a063ef (diff)
Fix T84455: Circle select tool cursor draws in overlapping regions
-rw-r--r--release/scripts/startup/bl_ui/space_toolsystem_common.py2
1 files changed, 1 insertions, 1 deletions
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