[Bf-blender-cvs] [f990a1a6cc4] master: T62446: Mouse cursor disappears on Grease Pencil stroke

Antonioya noreply at git.blender.org
Wed Mar 13 17:13:56 CET 2019


Commit: f990a1a6cc477ebbe85b4df281afbcda7b9633a1
Author: Antonioya
Date:   Wed Mar 13 17:13:37 2019 +0100
Branches: master
https://developer.blender.org/rBf990a1a6cc477ebbe85b4df281afbcda7b9633a1

T62446: Mouse cursor disappears on Grease Pencil stroke

Before the cursor was only visible after the cursor moves over side areas, but not in viewport area.

Now, as soon the drawing is completed, the cursor is reset in order to get again the icon in the viewport.

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

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 21c27bc3aeb..7429c142ec4 100644
--- a/source/blender/editors/gpencil/gpencil_paint.c
+++ b/source/blender/editors/gpencil/gpencil_paint.c
@@ -2392,6 +2392,8 @@ static void gpencil_draw_exit(bContext *C, wmOperator *op)
 		gpencil_undo_finish();
 
 		/* cleanup */
+		WM_cursor_modal_set(p->win, CURSOR_STD);
+
 		gp_paint_cleanup(p);
 		gp_session_cleanup(p);
 		ED_gpencil_toggle_brush_cursor(C, true, NULL);



More information about the Bf-blender-cvs mailing list