From 6612b98ddba92ce2e6a4a3aabf72f2c71471c430 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 7 May 2009 15:14:59 +0000 Subject: [PATCH] From Frederic Bouvier, workaround of setCursor problems under Windows. --- src/osgViewer/GraphicsWindowWin32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgViewer/GraphicsWindowWin32.cpp b/src/osgViewer/GraphicsWindowWin32.cpp index 6a48bf70c..bc2a4007a 100644 --- a/src/osgViewer/GraphicsWindowWin32.cpp +++ b/src/osgViewer/GraphicsWindowWin32.cpp @@ -2367,7 +2367,7 @@ LRESULT GraphicsWindowWin32::handleNativeWindowingEvent( HWND hwnd, UINT uMsg, W break; default: if (_traits->useCursor && _appMouseCursor != InheritCursor) - setCursor(LeftArrowCursor); + setCursor(_appMouseCursor); break; } return result;