UI: Mac Incorrect Hand Cursor for Move #118423

Merged
Harley Acheson merged 1 commits from Harley/blender:MacOpenHandCursor into main 2024-02-19 18:00:45 +01:00
1 changed files with 1 additions and 1 deletions

View File

@ -1002,7 +1002,7 @@ NSCursor *GHOST_WindowCocoa::getStandardCursor(GHOST_TStandardCursor shape) cons
case GHOST_kStandardCursorStop:
return [NSCursor operationNotAllowedCursor];
case GHOST_kStandardCursorMove:
return [NSCursor pointingHandCursor];
return [NSCursor openHandCursor];
case GHOST_kStandardCursorDefault:
return [NSCursor arrowCursor];
case GHOST_kStandardCursorKnife: