Assorted bug fixes

This commit is contained in:
Marc Chapman 2017-07-27 01:50:52 +01:00
parent 31f1d27a49
commit d1b806caf0
3 changed files with 26 additions and 3 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;
}
}