Forgot to restore the increment of current keysym.
[libguac-client-rdp.git] / src / guac_handlers.c
index 7aee4da..bfb7bda 100644 (file)
@@ -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++;
+
     }
 
 }