diff options
Diffstat (limited to 'libX11/src/PeekIfEv.c')
-rw-r--r-- | libX11/src/PeekIfEv.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libX11/src/PeekIfEv.c b/libX11/src/PeekIfEv.c index 1d5b1ab9c..5105b6a58 100644 --- a/libX11/src/PeekIfEv.c +++ b/libX11/src/PeekIfEv.c @@ -60,7 +60,12 @@ XPeekIfEvent ( prev = qelt, qelt = qelt->next) { if(qelt->qserial_num > qe_serial && (*predicate)(dpy, &qelt->event, arg)) { + XEvent copy; *event = qelt->event; + if (_XCopyEventCookie(dpy, &event->xcookie, ©.xcookie)) { + _XStoreEventCookie(dpy, ©); + *event = copy; + } UnlockDisplay(dpy); return 0; } |