From 04ef62177fb6483dd1424486b8d7ddf994f62204 Mon Sep 17 00:00:00 2001 From: William Reynish Date: Mon, 30 Sep 2019 13:33:54 +0200 Subject: UI: Use paint crosshair cursor in all paint & sculpt modes Currently, we use the crosshair cursor in Sculpt mode, but not in the other paint modes. - Sculpt Mode: This crosshair cursor is too weighty. - Texture, Weight, Vertex Paint: Using the arrow cursor for painting is not right. This commit makes the following changes: - Use the new special paint crosshair instead - Use this cursor in all paint modes, not just Sculpt Reviewed by: Brecht Differential Revision: https://developer.blender.org/D5940 --- source/blender/makesrna/intern/rna_wm_api.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/makesrna/intern/rna_wm_api.c') diff --git a/source/blender/makesrna/intern/rna_wm_api.c b/source/blender/makesrna/intern/rna_wm_api.c index f0bc031c328..1457f0e45e7 100644 --- a/source/blender/makesrna/intern/rna_wm_api.c +++ b/source/blender/makesrna/intern/rna_wm_api.c @@ -54,6 +54,7 @@ const EnumPropertyItem rna_enum_window_cursor_items[] = { {WM_CURSOR_KNIFE, "KNIFE", 0, "Knife", ""}, {WM_CURSOR_TEXT_EDIT, "TEXT", 0, "Text", ""}, {WM_CURSOR_PAINT_BRUSH, "PAINT_BRUSH", 0, "Paint Brush", ""}, + {WM_CURSOR_CROSSA, "PAINT_CROSS", 0, "Paint Cross", ""}, {WM_CURSOR_ERASER, "ERASER", 0, "Eraser", ""}, {WM_CURSOR_HAND, "HAND", 0, "Hand", ""}, {WM_CURSOR_EW_SCROLL, "SCROLL_X", 0, "Scroll-X", ""}, -- cgit v1.2.3