[Bf-blender-cvs] [e6b08b63062] blender2.8: GP: Hide Arrow cursor while painting

Antonioya noreply at git.blender.org
Fri Nov 9 20:01:52 CET 2018


Commit: e6b08b63062cce12e74dbabdc01c412e6acf5a14
Author: Antonioya
Date:   Fri Nov 9 20:01:41 2018 +0100
Branches: blender2.8
https://developer.blender.org/rBe6b08b63062cce12e74dbabdc01c412e6acf5a14

GP: Hide Arrow cursor while painting

The arrow cursor is too intrusive

===================================================================

M	source/blender/editors/gpencil/gpencil_paint.c

===================================================================

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);
+
 	}
 }



More information about the Bf-blender-cvs mailing list