You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by jm...@apache.org on 2017/03/14 05:14:03 UTC

[4/6] incubator-guacamole-server git commit: GUACAMOLE-231: Notifying terminal for mouse movement is no longer necessary (common cursor sends its own position updates without requiring new frames).

GUACAMOLE-231: Notifying terminal for mouse movement is no longer necessary (common cursor sends its own position updates without requiring new frames).


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/fe8771e1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/tree/fe8771e1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/diff/fe8771e1

Branch: refs/heads/master
Commit: fe8771e1816d51762011fd1200ec6ce4a89dde1c
Parents: 240e18c
Author: Michael Jumper <mj...@apache.org>
Authored: Sat Mar 11 14:58:52 2017 -0800
Committer: Michael Jumper <mj...@apache.org>
Committed: Sat Mar 11 14:58:52 2017 -0800

----------------------------------------------------------------------
 src/terminal/terminal.c | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/blob/fe8771e1/src/terminal/terminal.c
----------------------------------------------------------------------
diff --git a/src/terminal/terminal.c b/src/terminal/terminal.c
index a65f446..c5df648 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;
 
 }