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:
authorJuanfran Matheu <jfmatheu>2021-01-26 06:00:49 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2021-01-26 06:01:12 +0300
commitbe262cf561293541b889a97026311adf3965a545 (patch)
tree3721bfae90a1625e0feaa578adbbc7200dc6f9b3
parent0734b235d20f4b764265fce089df73de0f052739 (diff)
TEXTURE PAINT: Tools with wrong cursor
Texture paint tools were using DEFAULT cursor instead of PAINT_CROSS cursor as vertex paint, weight paint and sculpt modes. Before {F9591366} After {F9591370} Reviewed By: Blendify Differential Revision: https://developer.blender.org/D10172
-rw-r--r--release/scripts/startup/bl_ui/space_toolsystem_toolbar.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
index ba165d1e86c..fdc3732f92a 100644
--- a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
@@ -1561,6 +1561,7 @@ class _defs_texture_paint:
icon_prefix="brush.paint_texture.",
type=bpy.types.Brush,
attr="image_tool",
+ cursor='PAINT_CROSS',
)