RemoteHWInterface: Fix lost drag bitmap on cursor change.

The drag bitmap was lost because the original, uncombined, cursor was
sent on cursor change.
This commit is contained in:
Michael Lotz 2017-11-21 21:21:37 +01:00
parent 4d9e21b824
commit 82873c6ece

View File

@ -496,7 +496,7 @@ RemoteHWInterface::SetCursor(ServerCursor* cursor)
HWInterface::SetCursor(cursor);
RemoteMessage message(NULL, fSendBuffer);
message.Start(RP_SET_CURSOR);
message.AddCursor(Cursor().Get());
message.AddCursor(CursorAndDragBitmap().Get());
}