GP: Hide Arrow cursor while painting

The arrow cursor is too intrusive
This commit is contained in:
Antonio Vazquez 2018-11-09 20:01:41 +01:00
parent 03ca79a509
commit e6b08b6306
1 changed files with 2 additions and 1 deletions

View File

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