Merge pull request #2056 from Bloodknight/afx_merge_main

Afx merge main
This commit is contained in:
Areloch 2017-10-11 08:47:47 -05:00 committed by GitHub
commit 35d649b57e
301 changed files with 59625 additions and 1480 deletions

View file

@ -127,6 +127,11 @@ void MacCursorController::setCursorShape(U32 cursorID)
case PlatformCursorController::curResizeHorz:
[[NSCursor resizeUpDownCursor] set];
break;
// This sets an appropriate value for the standard hand cursor.
// In AFX this is used for rollover feedback.
case PlatformCursorController::curHand:
[[NSCursor pointingHandCursor] set];
break;
}
}