mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 19:26:16 +00:00
[WIN32K]
Go back to hiding the cursor with GreMovePointer, instead of setting NULL bitmaps. While MSDN states that psoColor and psoMask can both be NULL in DrvSetPointerShape, it doesn't explicitly say anything about both being NULL at the same time. VBox driver doesn't expect that and will crash, so most likely windows doesn't do this. svn path=/trunk/; revision=50375
This commit is contained in:
@@ -147,15 +147,12 @@ UserSetCursor(
|
||||
if (OldCursor && CurInfo->ShowingCursor)
|
||||
{
|
||||
/* Remove the cursor */
|
||||
//GreMovePointer(hdcScreen, -1, -1);
|
||||
GreMovePointer(hdcScreen, -1, -1);
|
||||
DPRINT("Removing pointer!\n");
|
||||
}
|
||||
|
||||
CurInfo->CurrentCursorObject = NULL;
|
||||
CurInfo->ShowingCursor = 0;
|
||||
|
||||
/* Unset the bitmaps */
|
||||
GreSetPointerShape(hdcScreen, NULL, NULL, 0, 0, 0, 0);
|
||||
}
|
||||
|
||||
/* Return the old cursor */
|
||||
|
||||
Reference in New Issue
Block a user