mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-02-23 23:40:37 +01:00
dix: Pick keyboard instead of using virtual keyboard in Grab/UngrabKey.
This commit is contained in:
parent
5f9c10e8da
commit
0c607f4b19
1 changed files with 2 additions and 2 deletions
|
|
@ -4433,7 +4433,7 @@ ProcUngrabKey(ClientPtr client)
|
|||
REQUEST(xUngrabKeyReq);
|
||||
WindowPtr pWin;
|
||||
GrabRec tempGrab;
|
||||
DeviceIntPtr keybd = inputInfo.keyboard;
|
||||
DeviceIntPtr keybd = PickKeyboard(client);
|
||||
int rc;
|
||||
|
||||
REQUEST_SIZE_MATCH(xUngrabKeyReq);
|
||||
|
|
@ -4475,7 +4475,7 @@ ProcGrabKey(ClientPtr client)
|
|||
WindowPtr pWin;
|
||||
REQUEST(xGrabKeyReq);
|
||||
GrabPtr grab;
|
||||
DeviceIntPtr keybd = inputInfo.keyboard;
|
||||
DeviceIntPtr keybd = PickKeyboard(client);
|
||||
int rc;
|
||||
|
||||
REQUEST_SIZE_MATCH(xGrabKeyReq);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue