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:
authorAntonio Vazquez <blendergit@gmail.com>2019-10-10 21:04:10 +0300
committerAntonio Vazquez <blendergit@gmail.com>2019-10-10 21:04:39 +0300
commit02f3014ec66425d55b6de8af1aff204ff1d39f37 (patch)
tree150f33fd66747145335b9fbc163288575836c1b3
parent91a26ee745f0d972a7abca844abd5d944b16cfa8 (diff)
GPencil: Change Paint cursor to DOT
After doing some test, the cross cursor is too intrusive when you are drawing in grease pencil, so we decided to change by Dot cursor. Reviewers: @brecht @mendio @pepeland @pablovazquez @billreynish
-rw-r--r--release/scripts/startup/bl_ui/space_toolsystem_toolbar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
index aa5be13c01b..4bce8a95528 100644
--- a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
@@ -1320,7 +1320,7 @@ class _defs_gpencil_paint:
icon_prefix="brush.gpencil_draw.",
type=bpy.types.Brush,
attr="gpencil_tool",
- cursor='PAINT_CROSS',
+ cursor='DOT',
tooldef_keywords=dict(
operator="gpencil.draw",
),