Commit 53762ddb277c690e486d0e17b10591774248c8cf

Authored by malc
1 parent 429a8ed3

Reset the key modifiers upon client connect

VNC should not maintain modifer state upon reconnects With some window
managers/vnc clients it will only see a key down event for a modifier
followed by immediate disconnect(think Alt-F4), with a net effect of
subsequently connected clients operating as if the modifier was never
released.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5851 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 0 deletions
... ... @@ -2246,6 +2246,7 @@ static void vnc_connect(VncState *vs)
2246 2246 vs->has_hextile = 0;
2247 2247 vs->ds->dpy_copy = NULL;
2248 2248 vnc_update_client(vs);
  2249 + reset_keys(vs);
2249 2250 }
2250 2251  
2251 2252 static void vnc_listen_read(void *opaque)
... ...