GUCAMOLE-206: Merge fix for dropped keys while alt pressed.

This commit is contained in:
James Muehlner 2017-02-15 19:44:02 -08:00
commit 0ea95822bc

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 alt being held, also send escape character */
if (term->mod_alt) if (term->mod_alt)
return guac_terminal_send_string(term, "\x1B"); guac_terminal_send_string(term, "\x1B");
/* Translate Ctrl+letter to control code */ /* Translate Ctrl+letter to control code */
if (term->mod_ctrl) { if (term->mod_ctrl) {