Always hide local cursor initally

We don't know if the server will support a client side cursor, so
we have to assume a server side one to start with.
This commit is contained in:
Pierre Ossman 2017-09-08 11:18:47 +02:00
parent c7c6cb196d
commit cd74793b44
1 changed files with 4 additions and 0 deletions

View File

@ -1084,6 +1084,10 @@ RFB.prototype = {
this._timing.fbu_rt_start = (new Date()).getTime();
this._timing.pixels = 0;
// Cursor will be server side until the server decides to honor
// our request and send over the cursor image
this._display.disableLocalCursor();
this._updateConnectionState('connected');
return true;
},