GUACAMOLE-206: Do not drop keys while Alt is held.

This commit is contained in:
Michael Jumper 2017-02-14 21:00:14 -08:00
parent 4da4ce7279
commit da81d16c27

View File

@ -1522,7 +1522,7 @@ static int __guac_terminal_send_key(guac_terminal* term, int keysym, int pressed
/* If alt being held, also send escape character */
if (term->mod_alt)
return guac_terminal_send_string(term, "\x1B");
guac_terminal_send_string(term, "\x1B");
/* Translate Ctrl+letter to control code */
if (term->mod_ctrl) {