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:
authorAntonioya <blendergit@gmail.com>2018-11-09 22:01:41 +0300
committerAntonioya <blendergit@gmail.com>2018-11-09 22:01:41 +0300
commite6b08b63062cce12e74dbabdc01c412e6acf5a14 (patch)
treee468fbf2513097b3bd03e2c60d0d0b78c2c61fe5
parent03ca79a5094b471e8a25d554360565704ec29b8f (diff)
GP: Hide Arrow cursor while painting
The arrow cursor is too intrusive
-rw-r--r--source/blender/editors/gpencil/gpencil_paint.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/gpencil/gpencil_paint.c b/source/blender/editors/gpencil/gpencil_paint.c
index a0cc149fd90..7c74847c514 100644
--- a/source/blender/editors/gpencil/gpencil_paint.c
+++ b/source/blender/editors/gpencil/gpencil_paint.c
@@ -2363,7 +2363,8 @@ static void gpencil_draw_cursor_set(tGPsdata *p)
WM_cursor_modal_set(p->win, BC_CROSSCURSOR); /* XXX need a better cursor */
}
else {
- WM_cursor_modal_set(p->win, CURSOR_STD);
+ WM_cursor_modal_set(p->win, CURSOR_NONE);
+
}
}