fix recursive disaster
This commit is contained in:
parent
b9f5ce3953
commit
70166b1a27
|
@ -3963,7 +3963,10 @@ export default class RFB extends EventTargetMixin {
|
||||||
};
|
};
|
||||||
|
|
||||||
this._refreshCursor();
|
this._refreshCursor();
|
||||||
this._proxyRFBMessage('updateCursor', [ rgba, hotx, hoty, w, h ]);
|
|
||||||
|
if (this._isPrimaryDisplay) {
|
||||||
|
this._proxyRFBMessage('updateCursor', [ rgba, hotx, hoty, w, h ]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_shouldShowDotCursor() {
|
_shouldShowDotCursor() {
|
||||||
|
|
Loading…
Reference in New Issue