From 64e861eb8ec8371e92ded8e3f5cd8c11bfe4bafd Mon Sep 17 00:00:00 2001 From: Gerrit Brehmer Date: Sun, 8 Dec 2019 14:56:02 +0100 Subject: [PATCH] fix --- core/rfb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/rfb.js b/core/rfb.js index bb57d955..0452dbf1 100644 --- a/core/rfb.js +++ b/core/rfb.js @@ -1229,7 +1229,7 @@ export default class RFB extends EventTargetMixin { // we're past the point where we could backtrack, so it's safe to call this this._setDesktopName(name); this._resize(width, height); - this._display.rotate(this._rotate); + this._display.rotate = this._rotate; if (this._scale) { this._display.scale(1.0); }