From fe8771e1816d51762011fd1200ec6ce4a89dde1c Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sat, 11 Mar 2017 14:58:52 -0800 Subject: [PATCH] GUACAMOLE-231: Notifying terminal for mouse movement is no longer necessary (common cursor sends its own position updates without requiring new frames). --- src/terminal/terminal.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/terminal/terminal.c b/src/terminal/terminal.c index a65f4469..c5df648d 100644 --- a/src/terminal/terminal.c +++ b/src/terminal/terminal.c @@ -1746,7 +1746,6 @@ int guac_terminal_send_mouse(guac_terminal* term, guac_user* user, result = __guac_terminal_send_mouse(term, user, x, y, mask); guac_terminal_unlock(term); - guac_terminal_notify(term); return result; }