UI: Update paint crosshair for Mac

This is based on feedback from users.
Only affects Mac for now, Windows will be committed separately.
This commit is contained in:
William Reynish 2019-10-01 00:00:06 +02:00
parent 9411b0a3c7
commit 60a827a2a9
Notes: blender-bot 2023-02-14 11:42:40 +01:00
Referenced by issue #70414, EEVEE 2.81 VIEWPORT CRASH - having 2 viewports and UV edit window crashes blender
Referenced by issue #70407, Blender 2.81 Alpha on macOS 10.14.6 crashes upon launch starting with ff10ff782b
3 changed files with 2 additions and 2 deletions

View File

@ -1013,9 +1013,9 @@ NSCursor *GHOST_WindowCocoa::getStandardCursor(GHOST_TStandardCursor shape) cons
case GHOST_kStandardCursorHorizontalSplit:
return getImageCursor(shape, @"splith.pdf", NSMakePoint(16, 16));
case GHOST_kStandardCursorCrosshairA:
return getImageCursor(shape, @"crossa.pdf", NSMakePoint(16, 16));
return getImageCursor(shape, @"paint_cursor_cross.pdf", NSMakePoint(16, 15));
case GHOST_kStandardCursorCrosshairB:
return getImageCursor(shape, @"crossb.pdf", NSMakePoint(16, 16));
return getImageCursor(shape, @"paint_cursor_dot.pdf", NSMakePoint(16, 15));
case GHOST_kStandardCursorCrosshairC:
return getImageCursor(shape, @"crossc.pdf", NSMakePoint(16, 16));
default: