Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Reynish <billrey@me.com>2019-10-01 01:00:06 +0300
committerWilliam Reynish <billrey@me.com>2019-10-01 01:00:06 +0300
commit60a827a2a9917c142a66e932e9009948ea6b7b78 (patch)
tree60d7ac7086140c6d12ca4498b07c2ce0a85e7de9 /intern/ghost
parent9411b0a3c750bd8b4bf44f65035e68a0c58b801b (diff)
UI: Update paint crosshair for Mac
This is based on feedback from users. Only affects Mac for now, Windows will be committed separately.
Diffstat (limited to 'intern/ghost')
-rw-r--r--intern/ghost/intern/GHOST_WindowCocoa.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/ghost/intern/GHOST_WindowCocoa.mm b/intern/ghost/intern/GHOST_WindowCocoa.mm
index 1e0952c3bd6..e46e589fea4 100644
--- a/intern/ghost/intern/GHOST_WindowCocoa.mm
+++ b/intern/ghost/intern/GHOST_WindowCocoa.mm
@@ -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: