From 54b16f2db48a7351c7ac3dcbaf4631690e81cad7 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Thu, 2 Jan 2014 12:32:25 -0800 Subject: [PATCH] Send pointer cursor by default, until overridden by VNC server. --- src/protocols/vnc/client.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/protocols/vnc/client.c b/src/protocols/vnc/client.c index 8855856a..4afb8738 100644 --- a/src/protocols/vnc/client.c +++ b/src/protocols/vnc/client.c @@ -25,6 +25,7 @@ #include "client.h" #include "dot_cursor.h" #include "guac_handlers.h" +#include "pointer_cursor.h" #include "vnc_handlers.h" #include @@ -357,6 +358,10 @@ int guac_client_init(guac_client* client, int argc, char** argv) { if (guac_client_data->remote_cursor) guac_vnc_set_dot_cursor(client); + /* Otherwise, set pointer until explicitly requested otherwise */ + else + guac_vnc_set_pointer_cursor(client); + } /* Send name */