[mouse] Do not overwrite events when moving

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2008-04-09 20:04:15 +02:00
parent 32fc1a0a78
commit baa9525c70

View file

@ -245,7 +245,7 @@ uicb_client_movemouse(int screen, char *arg __attribute__ ((unused)))
{
/* XMaskEvent allows to retrieve only specified events from
* the queue and requeue the other events... */
while((ev = xcb_wait_for_event(globalconf.connection)))
while(ev || (ev = xcb_wait_for_event(globalconf.connection)))
{
switch((ev->response_type & 0x7f))
{