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:37:14 +0300
commit7d2f746369e6f79bc6282990d9b1e10764462077 (patch)
tree8ea1264944a5557543052d047414fe4fb01540f4
parent6499a2ec5c7f4efc927ea3975099060b37d22274 (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',
)