From: Michael Jumper Date: Wed, 21 Mar 2012 03:10:22 +0000 (-0700) Subject: Forgot to restore the increment of current keysym. X-Git-Url: http://git.alex.org.uk Forgot to restore the increment of current keysym. --- diff --git a/src/guac_handlers.c b/src/guac_handlers.c index 7aee4da..bfb7bda 100644 --- a/src/guac_handlers.c +++ b/src/guac_handlers.c @@ -336,6 +336,9 @@ void __guac_rdp_update_keysyms(guac_client* client, const int* keysym_string, in if (current_state == from) __guac_rdp_send_keysym(client, *keysym_string, to); + /* Next keysym */ + keysym_string++; + } }