소스 검색

Properly propagate CursorWarpedTo()

Although unlikely, there might be other parts of the X server that are
also interested in this call. Make sure we propagate things on properly.
pull/1738/head
Pierre Ossman 3 달 전
부모
커밋
97dd7f1c25
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5
    0
      unix/xserver/hw/vnc/vncHooks.c

+ 5
- 0
unix/xserver/hw/vnc/vncHooks.c 파일 보기

@@ -638,7 +638,12 @@ static void vncHooksCursorWarpedTo(DeviceIntPtr pDev,
int x, int y)
{
SCREEN_PROLOGUE(pScreen_, CursorWarpedTo);

if (pScreen->CursorWarpedTo)
(*pScreen->CursorWarpedTo) (pDev, pScreen_, pClient, pWindow, pSprite, x, y);

vncSetCursorPos(pScreen->myNum, x, y);

SCREEN_EPILOGUE(CursorWarpedTo);
}
#endif

Loading…
취소
저장