Fixing a cursor bug in \"GLUT_CURSOR_INHERIT\"

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@677 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
fayjf 2005-07-13 20:25:07 +00:00
parent fa640f9356
commit 322a290199

View File

@ -147,11 +147,13 @@ void fgSetCursor ( SFG_Window *window, int cursorID )
}
}
if ( ( cursorIDToUse != GLUT_CURSOR_NONE ) && ( cursor == None ) ) {
if ( cursorIDToUse == GLUT_CURSOR_INHERIT )
XUndefineCursor( fgDisplay.Display, window->Window.Handle );
if ( ( cursorIDToUse != GLUT_CURSOR_NONE ) && ( cursor == None ) )
fgError( "Failed to create cursor" );
}
XDefineCursor( fgDisplay.Display,
window->Window.Handle, cursor );
else
XDefineCursor( fgDisplay.Display,
window->Window.Handle, cursor );
}
#elif TARGET_HOST_WIN32 || TARGET_HOST_WINCE