serial != sequenceNumber, see _XSetLastRequestRead() cookie->serial is already set at this point, setting it again directly from the sequenceNumber of the event causes a bunch of weird issues such as scrollbars and text drag-n-drop breaking.
https://bugzilla.redhat.com/show_bug.cgi?id=965347 Fixes regression introduced in 5d43d4914dcabb6de69859567061e99300e56ef4 Signed-off-by: Peter Hutterer <[email protected]> --- src/XExtInt.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/XExtInt.c b/src/XExtInt.c index 8e19b97..d3c6b7c 100644 --- a/src/XExtInt.c +++ b/src/XExtInt.c @@ -915,7 +915,6 @@ static void xge_copy_to_cookie(xGenericEvent* ev, cookie->type = ev->type; cookie->evtype = ev->evtype; cookie->extension = ev->extension; - cookie->serial = ev->sequenceNumber; } static Bool -- 1.8.1.4 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
