Repository: incubator-guacamole-server Updated Branches: refs/heads/staging/0.9.12-incubating de9b8d6d2 -> cf05eca68
GUACAMOLE-231: Notify terminal when display is modified due to mouse cursor movement. 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/6a1db082 Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/tree/6a1db082 Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/diff/6a1db082 Branch: refs/heads/staging/0.9.12-incubating Commit: 6a1db08299c51f081a2b5633f38f6612c803228f Parents: de9b8d6 Author: Michael Jumper <[email protected]> Authored: Mon Mar 6 22:41:19 2017 -0800 Committer: Michael Jumper <[email protected]> Committed: Mon Mar 6 22:41:19 2017 -0800 ---------------------------------------------------------------------- src/terminal/terminal.c | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/blob/6a1db082/src/terminal/terminal.c ---------------------------------------------------------------------- diff --git a/src/terminal/terminal.c b/src/terminal/terminal.c index c5df648..a65f446 100644 --- a/src/terminal/terminal.c +++ b/src/terminal/terminal.c @@ -1746,6 +1746,7 @@ 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; }
