Don't send or recieve clipboard in view_only
This commit is contained in:
parent
0298305e80
commit
f78a652e86
|
@ -343,7 +343,7 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
clipboardPasteFrom: function (text) {
|
clipboardPasteFrom: function (text) {
|
||||||
if (this._rfb_connection_state !== 'connected') { return; }
|
if (this._rfb_connection_state !== 'connected' || this._view_only) { return; }
|
||||||
RFB.messages.clientCutText(this._sock, text);
|
RFB.messages.clientCutText(this._sock, text);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -1189,6 +1189,8 @@
|
||||||
|
|
||||||
_handle_server_cut_text: function () {
|
_handle_server_cut_text: function () {
|
||||||
Util.Debug("ServerCutText");
|
Util.Debug("ServerCutText");
|
||||||
|
if (this._view_only) { return true; }
|
||||||
|
|
||||||
if (this._sock.rQwait("ServerCutText header", 7, 1)) { return false; }
|
if (this._sock.rQwait("ServerCutText header", 7, 1)) { return false; }
|
||||||
this._sock.rQskipBytes(3); // Padding
|
this._sock.rQskipBytes(3); // Padding
|
||||||
var length = this._sock.rQshift32();
|
var length = this._sock.rQshift32();
|
||||||
|
|
Loading…
Reference in New Issue