Repository: incubator-guacamole-server Updated Branches: refs/heads/master 4da4ce727 -> 0ea95822b
GUACAMOLE-206: Do not drop keys while Alt is held. Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/commit/da81d16c Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/tree/da81d16c Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/diff/da81d16c Branch: refs/heads/master Commit: da81d16c27cd2ec1b47763b607982c03ae799914 Parents: 4da4ce7 Author: Michael Jumper <[email protected]> Authored: Tue Feb 14 21:00:14 2017 -0800 Committer: Michael Jumper <[email protected]> Committed: Tue Feb 14 21:25:20 2017 -0800 ---------------------------------------------------------------------- src/terminal/terminal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/blob/da81d16c/src/terminal/terminal.c ---------------------------------------------------------------------- diff --git a/src/terminal/terminal.c b/src/terminal/terminal.c index 5c32774..d77cb67 100644 --- a/src/terminal/terminal.c +++ b/src/terminal/terminal.c @@ -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) {
