We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6e03a2 commit 3193f80Copy full SHA for 3193f80
core/rfb.js
@@ -720,6 +720,7 @@ export default class RFB extends EventTargetMixin {
720
currentHeight == this._expectedClientHeight;
721
}
722
723
+ // Handle browser window resizes
724
_handleResize() {
725
// Don't change anything if the client size is already as expected
726
if (this._clientHasExpectedSize()) {
@@ -2872,6 +2873,7 @@ export default class RFB extends EventTargetMixin {
2872
2873
this._fbWidth, this._fbHeight);
2874
2875
2876
+ // Handle resize-messages from the server
2877
_resize(width, height) {
2878
this._fbWidth = width;
2879
this._fbHeight = height;
0 commit comments