From Neil Hughes, "Please find attached two files that I've amended to add the IDC_HAND cursor for the windows platform."
This commit is contained in:
parent
b6182a1239
commit
616a96343c
@ -106,6 +106,7 @@ class OSGVIEWER_EXPORT GraphicsWindow : public osg::GraphicsContext, public osgG
|
||||
WaitCursor,
|
||||
TextCursor,
|
||||
CrosshairCursor,
|
||||
HandCursor,
|
||||
UpDownCursor,
|
||||
LeftRightCursor,
|
||||
TopSideCursor,
|
||||
|
@ -2033,6 +2033,9 @@ HCURSOR GraphicsWindowWin32::getOrCreateCursor(MouseCursor mouseCursor)
|
||||
case BottomLeftCorner:
|
||||
_mouseCursorMap[mouseCursor] = LoadCursor( NULL, IDC_SIZENESW );
|
||||
break;
|
||||
case HandCursor:
|
||||
_mouseCursorMap[mouseCursor] = LoadCursor( NULL, IDC_HAND );
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user