From f990a1a6cc477ebbe85b4df281afbcda7b9633a1 Mon Sep 17 00:00:00 2001 From: Antonioya Date: Wed, 13 Mar 2019 17:13:37 +0100 Subject: [PATCH] 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. --- source/blender/editors/gpencil/gpencil_paint.c | 2 ++ 1 file changed, 2 insertions(+) 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);